1 | void testConditionTask() {↵ | | 1 | void testExcepting() {↵
|
2 | expectLogContaining("condition.task", "My Condition execution↵ | | 2 | expectLogContaining("testExcepting",↵
|
3 | ");↵ | | 3 | "Exception raised inside called program");↵
|
4 | }↵ | | 4 | }↵
|
|
5 | public void testConditionConditionType() {↵ | | 5 | public void testExceptingFork() {↵
|
6 | expectLogContaining("condition.condition.type", "My Condition eval↵ | | 6 | expectLogContaining("testExceptingFork",↵
|
7 | ");↵ | | 7 | "Java Result:");↵
|
8 | }↵ | | 8 | }↵
|
|
9 | public void testConditionConditionTask() {↵ | | 9 | public void testExceptingFoe() {↵
|
10 | expectBuildExceptionContaining(↵ | | 10 | expectBuildExceptionContaining(↵
|
11 | "condition.condition.task", "task masking condition",↵ | | |
|
12 | "doesn't support the nested↵ | | 11 | "testExceptingFoe",↵
|
| | | 12 | "passes exception through",↵
|
13 | ");↵ | | 13 | "Exception raised inside called program");↵
|
14 | | | 14 |
|