You've already forked linux-packaging-mono
Imported Upstream version 5.8.0.22
Former-commit-id: df344e34b07851d296efb3e6604c8db42b6f7aa3
This commit is contained in:
parent
5f4a27cc8a
commit
7d05485754
@ -24,6 +24,7 @@
|
||||
//
|
||||
|
||||
using System;
|
||||
using System.Globalization;
|
||||
using System.Windows;
|
||||
using System.Windows.Media;
|
||||
using NUnit.Framework;
|
||||
@ -158,7 +159,6 @@ namespace MonoTests.System.Windows.Media {
|
||||
}
|
||||
|
||||
[Test]
|
||||
[Category ("NotWorking")]
|
||||
public void Parse ()
|
||||
{
|
||||
CheckMatrix (Matrix.Identity, Matrix.Parse ("Identity"));
|
||||
@ -348,7 +348,7 @@ namespace MonoTests.System.Windows.Media {
|
||||
public void ToStringTest ()
|
||||
{
|
||||
Matrix m = new Matrix (1, 2, 3, 4, 5, 6);
|
||||
Assert.AreEqual ("1,2,3,4,5,6", m.ToString());
|
||||
Assert.AreEqual ("1,2,3,4,5,6", m.ToString(CultureInfo.InvariantCulture));
|
||||
m = Matrix.Identity;
|
||||
Assert.AreEqual ("Identity", m.ToString());
|
||||
}
|
||||
|
Reference in New Issue
Block a user