1 | void testNolanguage() {↵ | | 1 | void testCatchNoDtd() throws Exception {↵
|
2 | expectBuildExceptionContaining("testNolanguage",↵ | | 2 | expectBuildExceptionContaining("testCatchNoDtd",↵
|
3 | "Absence of language attribute not detected",↵ | | 3 | ↵
|
4 | "script language must be specified");↵ | | |
|
5 | }↵ | | |
|
|
6 | public void testSelectionSetByDefault()↵ | | 4 | "expected failure",↵
|
| | | 5 | "Fatal error during transformation");↵
|
| | | 6 | }↵
|
|
| | | 7 | /**↵
|
| | | 8 | * A unit test for JUnit↵
|
| | | 9 | */↵
|
7 | {↵ | | 10 | public void testCatalog() throws Exception {↵
|
8 | executeTarget("testSelectionSetByDefault");↵ | | 11 | executeTarget("testCatalog");↵
|
9 | }↵ | | 12 | }↵
|
|
10 | public void testSelectionSetWorks() {↵ | | 13 | public void testOutputProperty() throws Exception {↵
|
11 | executeTarget("testSelectionSetWorks");↵ | | 14 | executeTarget("testOutputProperty");↵
|
12 | }↵ | | 15 | }↵
|
|
13 | public void testSelectionClearWorks() {↵ | | 16 | public void testFactory() throws Exception {↵
|
14 | executeTarget("testSelectionClearWorks");↵ | | 17 | executeTarget("testFactory");↵
|
15 | | | 18 |
|