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

AllTests.cs « Test « System.Configuration.Install « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8fe40431485f42a7b5de2fe04f234e332f3d2859 (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
//
// MonoTests.AllTests.cs
//
// Author:
//      Gonzalo Paniagua Javier (gonzalo@ximian.com)
//
// (C) 2002 Ximian, Inc. (http://www.ximian.com)
//

using System;
using NUnit.Framework;

namespace MonoTests
{
        public class AllTests : TestCase
	{
                public AllTests (string name) : base (name) {}
                
                public static ITest Suite 
                { 
                        get {
                                TestSuite suite =  new TestSuite();
				suite.AddTest (System.Configuration.Install.AllTests.Suite);
				return suite;
                        }
                }
        }
}