Welcome to mirror list, hosted at ThFree Co, Russian Federation.

AllTests.cs « Test « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e7a49c01fefb454d9301b06a289fe758c2f34ea8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//
// Mono.Tests.AllTests.cs
//
// Author:
//      Alexander Klyubin (klyubin@aqris.com)
//
// (C) 2001
//

using System;
using NUnit.Framework;

namespace MonoTests {
        /// <summary>
        ///   Combines all available 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(System.AllTests.Suite);
                                suite.AddTest(System.Collections.AllTests.Suite);
                                suite.AddTest(System.Security.AllTests.Suite);
                                suite.AddTest(System.Security.Cryptography.AllTests.Suite);
                                suite.AddTest(System.IO.AllTests.Suite);
                                suite.AddTest(System.Text.AllTests.Suite);
                                suite.AddTest(System.Security.Permissions.AllTests.Suite);
                                suite.AddTest(System.Resources.AllTests.Suite);
				suite.AddTest(System.Runtime.Serialization.AllTests.Suite);
//				suite.AddTest(System.Security.Policy.AllTests.Suite);
				return suite;
                        }
                }
        }
}