1 | void testFork() {↵ | | 1 | void testDoubleDefault() {↵
|
2 | expectLogContaining(↵ | | 2 | expectLog↵
|
3 | "fork", "Package: org.apache.tools.ant.util.facade");↵ | | |
|
4 | }↵ | | |
|
|
5 | /**↵ | | |
|
6 | * Test fork xml↵ | | |
|
7 | */↵ | | 3 | ("doubledefault", "attribute is falseattribute is true");↵
|
| | | 4 | }↵
|
|
8 | public void testForkXml() {↵ | | 5 | public void testTextOptional() {↵
|
9 | expectLogContaining(↵ | | 6 | expectLog↵
|
10 | "fork-xml", "<DependsUpon>");↵ | | |
|
11 | }↵ | | |
|
|
12 | /**↵ | | |
|
13 | * Test timeout↵ | | |
|
14 | */↵ | | 7 | ("text.optional", "MyTextoverride text");↵
|
| | | 8 | }↵
|
|
15 | public void testTimeout() {↵ | | 9 | public void testElementOrder() {↵
|
16 | expectLogContaining(↵ | | 10 | expectLog↵
|
17 | "fork-timeout", "JDepend FAILED - Timed out");↵ | | |
|
18 | }↵ | | |
|
|
|
19 | /**↵ | | |
|
20 | * Test timeout without timing out↵ | | |
|
21 | */↵ | | 11 | ("element.order", "Line 1Line 2");↵
|
| | | 12 | }↵
|
|
22 | public void testTimeoutNot() {↵ | | 13 | public void testElementOrder2() {↵
|
23 | expectLogContaining(↵ | | 14 | expectLog↵
|
24 | "fork-timeout-not", "Package: org.apache.tools.ant.util.facade");↵ | | 15 | ("element.order2", "Line 1Line 2Line 3");↵
|
25 | | | 16 |
|