1 | void testOrFails() {↵ | | 1 | void testIstrue() {↵
|
2 | expectPropertyUnset("orfails","orfails");↵ | | 2 | expectPropertySet("istrue","istrue");↵
|
3 | }↵ | | 3 | }↵
|
|
4 | public void testOrboth() {↵ | | 4 | public void testIstrueNot() {↵
|
5 | expectPropertySet("orboth","orboth");↵ | | 5 | expectPropertyUnset("istrue-not","istrue-not");↵
|
6 | }↵ | | 6 | }↵
|
|
7 | public void testFilesmatchIdentical() {↵ | | 7 | public void testIstrueFalse() {↵
|
8 | expectPropertySet("filesmatch-identical","filesmatch-identical");↵ | | 8 | expectPropertyUnset("istrue-false","istrue-false");↵
|
9 | }↵ | | 9 | }↵
|
|
|
10 | public void testFilesmatchIncomplete() {↵ | | 10 | public void testIstrueIncomplete1() {↵
|
11 | expectSpecificBuildException("filesmatch-incomplete",↵ | | 11 | expectSpecificBuildException("istrue-incomplete",↵
|
12 | "Missing file2 attribute",↵ | | 12 | "Missing attribute",↵
|
13 | "both file1 and file2 are required in filesmatch");↵ | | 13 | "Nothing to test for truth");↵
|
14 | | | 14 |
|