Completed cases in CharEnumeratorTest.cs
[mono.git] / mcs / class / corlib / Test / System.Security.Cryptography / AllTests.cs
1 //\r
2 // TestSuite.System.Security.Cryptography.AllCryptoTests.cs\r
3 //\r
4 // Author:\r
5 //      Thomas Neidhart (tome@sbox.tugraz.at)\r
6 //\r
7 \r
8 using System;\r
9 using NUnit.Framework;\r
10 \r
11 namespace MonoTests.System.Security.Cryptography {\r
12         /// <summary>\r
13         ///   Combines all available crypto unit tests into one test suite.\r
14         /// </summary>\r
15         public class AllTests : TestCase {\r
16                 public AllTests(string name) : base(name) {}\r
17                 \r
18                 public static ITest Suite \r
19                 { \r
20                         get \r
21                         {\r
22                                 TestSuite suite =  new TestSuite();\r
23                                 suite.AddTest(SymmetricAlgorithmTest.Suite);\r
24                                 suite.AddTest(AsymmetricAlgorithmTest.Suite); \r
25                                 suite.AddTest(RNGCryptoServiceProviderTest.Suite);\r
26                                 return suite;\r
27                         }\r
28                 }\r
29         }\r
30 }\r