1 | void testMappedFileset() {↵ | | 1 | void testCscReferences() throws Exception {↵
|
2 | executeTarget("testMappedFileset");↵ | | 2 | executeTarget("testCscReferences");↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | /**↵
|
5 | * test the explicit mapped file set↵ | | 5 | * ↵
|
6 | */↵ | | |
|
7 | public void testExplicitMappedFileset()↵ | | 6 | A unit test for JUnit↵
|
| | | 7 | */↵
|
8 | {↵ | | 8 | public void testCscResources() throws Exception {↵
|
9 | executeTarget("testExplicitMappedFileset");↵ | | 9 | executeTarget("testCSCResources");↵
|
10 | }↵ | | 10 | }↵
|
|
11 | /**↵ | | 11 | /**↵
|
12 | * test the mapped file list↵ | | 12 | * test we can assemble↵
|
13 | */↵ | | 13 | */↵
|
14 | public void testMappedFilelist() {↵ | | 14 | public void testILASM() throws Exception {↵
|
15 | executeTarget("testMappedFilelist");↵ | | 15 | executeTarget("testILASM");↵
|
16 | }↵ | | 16 | }↵
|
|
17 | /**↵ | | 17 | /**↵
|
18 | * test the pattern attribute↵ | | 18 | * test we can disassemble↵
|
19 | */↵ | | 19 | */↵
|
20 | public void testGoodPattern() {↵ | | 20 | public void testILDASM() throws Exception {↵
|
21 | executeTarget("testGoodPattern");↵ | | 21 | executeTarget("testILDASM");↵
|
22 | }↵ | | 22 | }↵
|
|
23 | /**↵ | | 23 | /**↵
|
24 | * test the pattern attribute again↵ | | 24 | * test we can disassemble↵
|
25 | */↵ | | 25 | */↵
|
26 | public void testBadPattern() {↵ | | 26 | public void testILDASM_empty() throws Exception {↵
|
27 | expectBuildExceptionContaining("testBadPattern",↵ | | 27 | expectBuildExceptionContaining("testILDASM_empty",↵
|
28 | "No parsing exception thrown", "Unparseable↵ | | 28 | "parameter validation",↵
|
29 | ");↵ | | 29 | "invalid");↵
|
30 | | | 30 |
|