1 | void testNoop() {↵ | | 1 | void test↵
|
2 | executeTarget("noop");↵ | | |
|
3 | }↵ | | |
|
| | | 2 | CscReferences() throws Exception {↵
|
| | | 3 | executeTarget("testCscReferences");↵
|
| | | 4 | }↵
|
|
| | | 5 | /**↵
|
| | | 6 | * A unit test for JUnit↵
|
| | | 7 | */↵
|
4 | public void testCurrent() {↵ | | 8 | public void testCscResources() throws Exception {↵
|
5 | executeTarget("current");↵ | | 9 | executeTarget("↵
|
6 | }↵ | | |
|
|
7 | public void testFaster()↵ | | 10 | testCSCResources");↵
|
| | | 11 | }↵
|
|
| | | 12 | /**↵
|
| | | 13 | * test we can assemble↵
|
| | | 14 | */↵
|
8 | {↵ | | 15 | public void testILASM() throws Exception {↵
|
9 | executeTarget("faster");↵ | | 16 | executeTarget("testILASM");↵
|
10 | }↵ | | 17 | }↵
|
|
11 | public void testSlower()↵ | | 18 | /**↵
|
| | | 19 | * test we can disassemble↵
|
| | | 20 | */↵
|
12 | {↵ | | 21 | public void testILDASM() throws Exception {↵
|
13 | executeTarget("slower");↵ | | 22 | executeTarget("testILDASM");↵
|
14 | }↵ | | 23 | }↵
|
|
15 | public void testTooSlow()↵ | | 24 | /**↵
|
| | | 25 | * test we can disassemble↵
|
| | | 26 | */↵
|
16 | {↵ | | 27 | public void testILDASM_empty() throws Exception {↵
|
17 | expectBuildExceptionContaining(↵ | | 28 | expectBuildExceptionContaining(↵
|
18 | "too_slow","out of range","out of the range 1-10↵ | | 29 | "testILDASM_empty",↵
|
| | | 30 | "parameter validation",↵
|
19 | ");↵ | | 31 | "invalid");↵
|
20 | | | 32 |
|