1 | void testAntTypeTest() {↵ | | 1 | void testReadBadFileNoFail() {↵
|
2 | expectLog("antTypeTest", "");↵ | | 2 | expectLog( "testReadBadFileNoFail", "srcfile is a directory!" );↵
|
3 | }↵ | | 3 | }↵
|
|
|
4 | public void testCorrectTaskNameBadAttr() {↵ | | 4 | public void testEchoToBadFile() {↵
|
5 | expectBuildExceptionContaining(↵ | | 5 | expectBuildExceptionContaining(↵
|
6 | "correct_taskname_badattr", "attribute message", "javac doesn't support the"↵ | | 6 | "testEchoToBadFile",↵
|
7 | );↵ | | 7 | "destfile is a directory", "destfile is a directory!" );↵
|
8 | }↵ | | 8 | }↵
|
|
|
9 | public void testCorrectTaskNameBadEl() {↵ | | 9 | public void testEchoToBadFileFail() {↵
|
10 | expectBuildExceptionContaining(↵ | | 10 | expectBuildExceptionContaining(↵
|
11 | "correct_taskname_badel", "element message", "javac doesn't support the"↵ | | 11 | "testEchoToBadFileFail",↵
|
12 | );↵ | | 12 | "destfile is a directory", "destfile is a directory!" );↵
|
13 | } | | 13 | }
|