repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
update readme (#21797)
[mono-project.git]
/
mono
/
tests
/
modules.cs
blob
36687bba0ddd87338fc12f903f88e270a7c1d8e2
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
}