1 | void testDefaultTest() {↵ | | 1 | void testFileSet() {↵
|
2 | expectLog("defaulttest", "attribute is false");↵ | | 2 | expectLogContaining("fileset", "types.FileSet");↵
|
3 | }↵ | | 3 | }↵
|
|
4 | public void testDoubleDefault() {↵ | | 4 | public void testFileSetAntType() {↵
|
5 | expectLog("doubledefault", "attribute is falseattribute is true");↵ | | 5 | expectLogContaining("fileset-ant-type", "types.PolyTest$MyFileSet");↵
|
6 | }↵ | | 6 | }↵
|
|
7 | public void testTextOptional() {↵ | | 7 | public void testPath() {↵
|
8 | expectLog("text.optional", "MyTextoverride text");↵ | | 8 | expectLogContaining("path", "types.Path");↵
|
9 | }↵ | | 9 | }↵
|
|
10 | public void testElementOrder() {↵ | | 10 | public void testPathAntType() {↵
|
11 | expectLog("element.order", "Line 1Line 2");↵ | | 11 | expectLogContaining("path-ant-type", "types.PolyTest$MyPath");↵
|
12 | } | | 12 | }
|