Imported Upstream version 4.0.0~alpha1

Former-commit-id: 806294f5ded97629b74c85c09952f2a74fe182d9
This commit is contained in:
Jo Shields
2015-04-07 09:35:12 +01:00
parent 283343f570
commit 3c1f479b9d
22469 changed files with 2931443 additions and 869343 deletions

View File

@ -49,10 +49,8 @@ namespace MonoTests.System.Drawing.Printing {
Assert.AreEqual ("[Margins Left=100 Right=100 Top=100 Bottom=100]", m.ToString (), "ToString");
Margins clone = (Margins) m.Clone ();
Assert.AreEqual (m, clone, "clone");
#if NET_2_0
Assert.IsTrue (m == clone, "==");
Assert.IsFalse (m != clone, "!=");
#endif
}
[Test]
@ -68,10 +66,8 @@ namespace MonoTests.System.Drawing.Printing {
// bottom smaller than top
Margins m3 = new Margins (10, 20, Int32.MaxValue, 0);
Assert.IsFalse (m2.GetHashCode () == m3.GetHashCode (), "GetHashCode");
#if NET_2_0
Assert.IsTrue (m1 != m2, "m1 != m2");
Assert.IsFalse (m1 == m2, "m1 == m2");
#endif
}
[Test]
@ -115,10 +111,8 @@ namespace MonoTests.System.Drawing.Printing {
{
Margins m1 = null;
Margins m2 = null;
#if NET_2_0
Assert.IsTrue (m1 == m2, "null==null");
Assert.IsFalse (m1 != m2, "null!=null");
#endif
}
}
}