1 | void testFileset() {↵ | | 1 | void testPath() {↵
|
2 | executeTarget("testFileset");↵ | | 2 | executeTarget("testPath");↵
|
3 | }↵ | | 3 | }↵
|
|
4 | public void testFilesetAndJar() {↵ | | 4 | public void testPathAndJar() {↵
|
5 | executeTarget("testFilesetAndJar");↵ | | 5 | executeTarget("testPathAndJar");↵
|
6 | }↵ | | 6 | }↵
|
|
7 | public void testFilesetAndSignedJar() {↵ | | 7 | public void testPathAndSignedJar() {↵
|
8 | expectBuildExceptionContaining("testFilesetAndSignedJar",↵ | | 8 | expectBuildExceptionContaining("testPathAndSignedJar",↵
|
9 | "incompatible attributes",↵ | | 9 | "incompatible attributes",↵
|
10 | SignJar.ERROR_SIGNEDJAR_AND_PATHS);↵ | | 10 | SignJar.ERROR_SIGNEDJAR_AND_PATHS);↵
|
11 | }↵ | | 11 | }↵
|
|
12 | public void testPath() {↵ | | 12 | public void testSignedJar() {↵
|
13 | executeTarget("testPath");↵ | | 13 | executeTarget("testSignedJar");↵
|
14 | | | 14 |
|