1 | void testNestedC() {↵ | | 1 | void testConditionConditionType() {↵
|
2 | expectLogContaining("nested.c", "add C called");↵ | | 2 | expectLogContaining("condition.condition.type", "My Condition eval");↵
|
3 | }↵ | | 3 | }↵
|
|
4 | public void testNestedAB() {↵ | | 4 | public void testConditionConditionTask() {↵
|
5 | expectBuildExceptionContaining(↵ | | 5 | expectBuildExceptionContaining(↵
|
6 | "nested.ab", "Should have got ambiguous", "ambiguous↵ | | 6 | "condition.condition.task", "task masking condition",↵
|
7 | ");↵ | | 7 | "doesn't support the nested");↵
|
8 | }↵ | | 8 | }↵
|
|
9 | public void testConditionType() {↵ | | 9 | public void testAddConfigured() {↵
|
10 | expectLogContaining("condition.type", "beforeafter↵ | | 10 | expectLogContaining(↵
|
11 | ");↵ | | 11 | "myaddconfigured", "value is Value Setexecute: value is Value Set");↵
|
12 | }↵ | | 12 | }↵
|
|
13 | public void testConditionTask() {↵ | | 13 | public void testAddConfiguredValue() {↵
|
14 | expectLogContaining("condition.task", "My Condition execution↵ | | 14 | expectLogContaining(↵
|
| | | 15 | "myaddconfiguredvalue",↵
|
15 | ");↵ | | 16 | "value is Value Setexecute: value is Value Set");↵
|
16 | | | 17 |
|