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/corlib/Test/System.Security.Cryptography/AllTests.cs')
-rw-r--r--mcs/class/corlib/Test/System.Security.Cryptography/AllTests.cs31
1 files changed, 0 insertions, 31 deletions
diff --git a/mcs/class/corlib/Test/System.Security.Cryptography/AllTests.cs b/mcs/class/corlib/Test/System.Security.Cryptography/AllTests.cs
deleted file mode 100644
index 90edff9d031..00000000000
--- a/mcs/class/corlib/Test/System.Security.Cryptography/AllTests.cs
+++ /dev/null
@@ -1,31 +0,0 @@
-//
-// TestSuite.System.Security.Cryptography.AllCryptoTests.cs
-//
-// Author:
-// Thomas Neidhart (tome@sbox.tugraz.at)
-//
-
-using System;
-using NUnit.Framework;
-
-namespace MonoTests.System.Security.Cryptography {
- /// <summary>
- /// Combines all available crypto unit tests into one test suite.
- /// </summary>
- public class AllTests : TestCase {
- public AllTests(string name) : base(name) {}
-
- public static ITest Suite
- {
- get
- {
- TestSuite suite = new TestSuite();
- suite.AddTest(SymmetricAlgorithmTest.Suite);
- suite.AddTest(AsymmetricAlgorithmTest.Suite);
- suite.AddTest(RNGCryptoServiceProviderTest.Suite);
- suite.AddTest(FromBase64TransformTest.Suite);
- return suite;
- }
- }
- }
-}