1 | void testBadNoJarfile() {↵ | | 1 | void testBadDirectory() {↵
|
2 | expectBuildExceptionContaining("test-bad-no-jarfile", "no-jarfile",↵ | | 2 | expectBuildExceptionContaining("test-bad-directory", "bad-jar-dir",↵
|
3 | "Missing 'jarfile' attribute!");↵ | | 3 | "Jar's directory not found:");↵
|
4 | assertPropertyUnset("jar.classpath");↵ | | 4 | assertPropertyUnset("jar.classpath");↵
|
5 | }↵ | | 5 | }↵
|
|
6 | public void testBadNoClassPath() {↵ | | 6 | public void testBadNoProperty() {↵
|
7 | expectBuildExceptionContaining("test-bad-no-classpath", "no-classpath",↵ | | 7 | expectBuildExceptionContaining("test-bad-no-property", "no-property",↵
|
8 | "Missing nested <classpath>!");↵ | | 8 | "Missing 'property' attribute!");↵
|
9 | assertPropertyUnset("jar.classpath");↵ | | 9 | assertPropertyUnset("jar.classpath");↵
|
10 | | | 10 |
|