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