1 | void testFileSet() {↵ | | 1 | void testEmpty() {↵
|
2 | expectLogContaining("fileset", "types.FileSet");↵ | | 2 | expectBuildException("empty", "required argument not specified");↵
|
3 | }↵ | | 3 | }↵
|
|
4 | public void testFileSetAntType() {↵ | | 4 | public void testNoName() {↵
|
5 | expectLogContaining("fileset-ant-type", "types.PolyTest$MyFileSet");↵ | | 5 | expectBuildException("noName", "required argument not specified");↵
|
6 | }↵ | | 6 | }↵
|
|
7 | public void testPath() {↵ | | 7 | public void testNoClassname() {↵
|
8 | expectLogContaining("path", "types.Path");↵ | | 8 | expectBuildException("noClassname", "required argument not specified");↵
|
9 | }↵ | | 9 | }↵
|
|
10 | public void testPathAntType() {↵ | | 10 | public void testClassNotFound() {↵
|
11 | expectLogContaining("path-ant-type", "types.PolyTest$MyPath↵ | | 11 | expectBuildException("classNotFound",↵
|
12 | ");↵ | | 12 | "classname specified doesn't exist");↵
|
13 | | | 13 |
|