1 | void testNamespaces() throws Exception {↵ | | 1 | void testFixFile() throws Exception {↵
|
2 | executeTarget("testNamespaces");↵ | | 2 | executeTarget("testFixFile");↵
|
3 | }↵ | | 3 | }↵
|
|
4 | public void testPropertyNoValue() throws Exception {↵ | | 4 | public void testFixFileExclusive() throws Exception {↵
|
5 | expectBuildExceptionContaining("testPropertyNoValue",↵ | | 5 | expectBuildExceptionContaining("testFixFileExclusive",↵
|
6 | ParserSupports.ERROR_NO_VALUE,↵ | | 6 | FixCRLF.ERROR_FILE_AND_SRCDIR, FixCRLF.ERROR_FILE_AND_SRCDIR);↵
|
| | | 7 | }↵
|
|
| | | 8 | /**↵
|
| | | 9 | * Bugzilla Report 20840↵
|
7 | ↵ | | 10 | *↵
|
8 | ParserSupports.ERROR_NO_VALUE);↵ | | 11 | * Will fail with an exception if the parent directories do not↵
|
| | | 12 | * get created.↵
|
9 | }↵ | | 13 | ↵
|
| | | 14 | */↵
|
10 | public void testUnknownProperty() throws Exception {↵ | | 15 | public void testCreateParentDirs() {↵
|
11 | executeTarget("testUnknownProperty");↵ | | 16 | executeTarget("createParentDirs");↵
|
12 | }↵ | | 17 | }↵
|
|
13 | public void NotestPropertyInvalid() throws Exception {↵ | | 18 | public void testPreserveLastModified() {↵
|
14 | executeTarget("testPropertyInvalid");↵ | | 19 | executeTarget("testPreserveLastModified");↵
|
15 | }↵ | | 20 | }↵
|
|
16 | public void NotestXercesProperty() throws Exception {↵ | | 21 | public void testFilter1() {↵
|
17 | executeTarget("testXercesProperty");↵ | | 22 | executeTarget("testFilter1");↵
|
18 | | | 23 |
|