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

AllTests.cs « System.Net.Sockets « Test « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fdff9250947826e63b3337d82eb5cc677cb3f079 (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
//
// MonoTests.System.Net.Sockets.AllTests, System.dll
//
// Author:
//   Lawrence Pit <loz@cable.a2000nl>
//

using System;
using NUnit.Framework;

namespace MonoTests.System.Net.Sockets {
        /// <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 ();
				#if NETWORKTEST                                                            
					suite.AddTest (TcpListenerTest.Suite);
					suite.AddTest (TcpClientTest.Suite);                                
					//suite.AddTest (UdpClientTest.Suite);
				#endif                                
				return suite;
                        }
                }
        }
}