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