[runtime] Require C# namespace to be quoted.
[mono-project.git] / mono / tests / modules.cs
blob36687bba0ddd87338fc12f903f88e270a7c1d8e2
1 //
2 // modules.cs:
3 //
4 // Tests for netmodules
5 //
7 using System;
9 public class Tests
11 public static int Main (string[] args) {
12 return TestDriver.RunTests (typeof (Tests), args);
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;