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

AllTests.cs « System.Security.Permissions « Test « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 95782000656dcf3465f13d4e04269454851f03e4 (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
//
// MonoTests.System.Security.Permissions.AllTests.cs
//
// Author:
//   Nick Drochak (ndrochak@gol.com)
//
// (C) 2001 Nick Drochak II
//

using System;
using NUnit.Framework;

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