updated the demo application
[mono.git] / mcs / nunit20 / nunit-console / MonoConsole.cs
1 //
2 // NUnit.Console.MonoConsole.cs
3 //
4 // Author:
5 //   Jackson Harper (Jackson@LatitudeGeo.com)
6 //
7
8 using System;
9 using System.Reflection;
10 using NUnit.Framework;
11
12
13 namespace NUnit.Console {
14
15   /// <summary>
16   ///    This is a lightweight NUnit 2.0 console runner designed to run
17   ///    in mono's current state. As soon as AppDomains are fully implemented
18   ///    in mono the nunit-console class can be used
19   /// </summary>
20   public class MonoConsole {
21
22     private Assembly    mAssembly;
23
24     //
25     // Public Constructors
26     //
27
28     public MonoConsole( string assemblypath ) {
29       mAssembly  =  Assembly.LoadFrom( assemblypath );
30       Run();
31     }
32     
33     //
34     // Private Methods
35     //
36     
37     private void Run() {
38
39     }
40
41     private void TestType( Type t ) {
42
43     }
44
45     private void TestMethod( MemberInfo method ) {
46
47     }
48
49   }
50
51 }
52