2004-05-20 Sebastien Pouliot <sebastien@ximian.com>
authorSebastien Pouliot <sebastien@ximian.com>
Fri, 21 May 2004 01:16:53 +0000 (01:16 -0000)
committerSebastien Pouliot <sebastien@ximian.com>
Fri, 21 May 2004 01:16:53 +0000 (01:16 -0000)
* X509CapiTest.cs: SetUp and TearDown are now public (required for new
nunit).
* X509SpcTest.cs: SetUp and TearDown are now public (required for new
nunit).

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

mcs/class/corlib/Test/System.Security.Cryptography.X509Certificates/ChangeLog
mcs/class/corlib/Test/System.Security.Cryptography.X509Certificates/X509CapiTest.cs
mcs/class/corlib/Test/System.Security.Cryptography.X509Certificates/X509SpcTest.cs

index a036d31c231fce623fd5aed71f8b6b1e0947e1a4..cfc03cc4bcc8506cee44b9884e868b80299df233 100644 (file)
@@ -1,3 +1,10 @@
+2004-05-20  Sebastien Pouliot  <sebastien@ximian.com>
+
+       * X509CapiTest.cs: SetUp and TearDown are now public (required for new
+       nunit).
+       * X509SpcTest.cs: SetUp and TearDown are now public (required for new
+       nunit).
+
 2004-04-28  Sebastien Pouliot  <sebastien@ximian.com>
 
        * X509SpcTest.cs: Commented tests as the root certificates aren't part
index f1a5f3f0c90578f1f5e207d2e0e02a5fda27269b..b273e34ca9858c9630f122cc4b59a8b252668622 100755 (executable)
@@ -56,7 +56,7 @@ namespace MonoTests.System.Security.Cryptography.X509Certificates {
                private CultureInfo oldcult;
 
                [SetUp]
-               void SetUp () 
+               public void SetUp () 
                {
                        // the current culture determines the result of formatting
                        oldcult = Thread.CurrentThread.CurrentCulture;
@@ -64,7 +64,7 @@ namespace MonoTests.System.Security.Cryptography.X509Certificates {
                }
 
                [TearDown]
-               void TearDown () 
+               public void TearDown () 
                {
                        Thread.CurrentThread.CurrentCulture = oldcult;
                        File.Delete("temp.cer");
index 2735f84fe4ddd108b9861c376663185cce138178..cc103121452fef0444fc08f4bb6b7b3e34ed00f5 100755 (executable)
@@ -20,7 +20,7 @@ namespace MonoTests.System.Security.Cryptography.X509Certificates {
        public class SoftwarePublisherCertificateTest : Assertion {
 
                [TearDown]
-               void TearDown () 
+               public void TearDown () 
                {
                        try {
                                File.Delete (Path.GetFullPath ("smallspc.exe"));