2005-05-31 Atsushi Enomoto <atsushi@ximian.com>
authorAtsushi Eno <atsushieno@gmail.com>
Tue, 31 May 2005 13:08:00 +0000 (13:08 -0000)
committerAtsushi Eno <atsushieno@gmail.com>
Tue, 31 May 2005 13:08:00 +0000 (13:08 -0000)
* XmlDsigC14NWithCommentsTransformTest.cs : added File.Delete()
  sanity check on CleanUp().

svn path=/trunk/mcs/; revision=45261

mcs/class/System.Security/Test/System.Security.Cryptography.Xml/ChangeLog
mcs/class/System.Security/Test/System.Security.Cryptography.Xml/XmlDsigC14NWithCommentsTransformTest.cs

index 3a1106b986dfa3b3af67a19c7172c1dfd74a9728..6d4b14854e2daee3e5b49a7813c95ee81c18aad4 100644 (file)
@@ -1,3 +1,8 @@
+2005-05-31  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * XmlDsigC14NWithCommentsTransformTest.cs : added File.Delete()
+         sanity check on CleanUp().
+
 2005-05-05  Sebastien Pouliot  <sebastien@ximian.com>
 
        * ReferenceTest.cs: Changed AddAllTransforms from Ignored to category
index 726fb7f914234797213f225cb3882ca2dd4728b1..6d41189e1aa605397b12e59f4ec84563601d2df2 100644 (file)
@@ -50,6 +50,10 @@ namespace MonoTests.System.Security.Cryptography.Xml {
                                        File.Delete ("world.txt");
                        }
                        catch {}
+                       if (File.Exists ("doc.dtd"))
+                               throw new Exception ("File.Delete() is not working.");
+                       if (File.Exists ("world.txt"))
+                               throw new Exception ("File.Delete() is not working.");
                }
 
                [Test]