2008-06-13 Zoltan Varga <vargaz@gmail.com>
[mono.git] / mono / tests / modules.cs
1 //
2 // modules.cs:
3 //
4 //  Tests for netmodules
5 //
6
7 using System;
8
9 public class Tests
10 {
11         public static int Main (string[] args) {
12                 return TestDriver.RunTests (typeof (Tests), args);
13         }
14
15         public static int test_0_gettype_nonpublic () {
16                 if (typeof (Tests).Assembly.GetType ("Foo+Bar") != null)
17                         return 0;
18                 else
19                         return 1;
20         }
21 }