2003-01-17 Sebastien Pouliot <spouliot@videotron.ca>
[mono.git] / mcs / class / System.Security / Test / AllTests.cs
1 //
2 // MonoTests.System.Security.AllTests.cs
3 //
4 // Author:
5 //      Sebastien Pouliot (spouliot@motus.com)
6 //
7 // (C) 2002 Motus Technologies Inc. (http://www.motus.com)
8 //
9
10 using System;
11 using NUnit.Framework;
12
13 namespace MonoTests.System.Security {
14
15 public class AllTests : TestCase {
16
17         public AllTests (string name) : base (name) {}
18         
19         public static ITest Suite { 
20                 get {
21                         TestSuite suite =  new TestSuite ();
22                         suite.AddTest (System.Security.Cryptography.Xml.AllTests.Suite);
23                         return suite;
24                 }
25         }
26 }
27
28 }