2002-06-12 Nick Drochak <ndrochak@gol.com>
[mono.git] / mcs / class / corlib / Test / System.Security / AllTests.cs
1 //
2 // TestSuite.System.Security.AllSecurityTests.cs
3 //
4 // Lawrence Pit <loz@cable.a2000.nl>
5 // 
6
7 using System;
8 using NUnit.Framework;
9
10 namespace MonoTests.System.Security {
11         /// <summary>
12         ///   Combines all available unit tests into one test suite.
13         /// </summary>
14         public class AllTests : TestCase {
15
16                 public AllTests (string name) : base (name) {}
17                 
18                 public static ITest Suite { 
19                         get {
20                                 TestSuite suite = new TestSuite ();
21                                 suite.AddTest (SecurityElementTest.Suite);
22                                 return suite;
23                         }
24                 }
25         }
26 }
27