Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System.XML/Test/System.Xml/XmlUrlResolverTests.cs')
-rw-r--r--mcs/class/System.XML/Test/System.Xml/XmlUrlResolverTests.cs5
1 files changed, 0 insertions, 5 deletions
diff --git a/mcs/class/System.XML/Test/System.Xml/XmlUrlResolverTests.cs b/mcs/class/System.XML/Test/System.Xml/XmlUrlResolverTests.cs
index 59752547bc0..cb2ccab72be 100644
--- a/mcs/class/System.XML/Test/System.Xml/XmlUrlResolverTests.cs
+++ b/mcs/class/System.XML/Test/System.Xml/XmlUrlResolverTests.cs
@@ -59,9 +59,6 @@ namespace MonoTests.System.Xml
}
[Test]
-#if !NET_2_0
- [Category ("NotDotNet")] // It should throw ArgumentNullException.
-#endif
[ExpectedException (typeof (ArgumentNullException))]
public void ResolveUriWithNullArgs ()
{
@@ -76,14 +73,12 @@ namespace MonoTests.System.Xml
resolver.GetEntity (uri, null, null);
}
-#if NET_2_0
[Test]
[ExpectedException (typeof (ArgumentException))]
public void GetEntityWithRelativeFileUri ()
{
resolver.GetEntity (new Uri ("file.txt", UriKind.Relative), null, typeof (Stream));
}
-#endif
[Test]
[ExpectedException (typeof (XmlException))]