1 | void testIstrue() {↵ | | 1 | void testIsfalseTrue() {↵
|
2 | expectPropertySet("istrue","istrue");↵ | | 2 | expectPropertyUnset("isfalse-true","isfalse-true");↵
|
3 | }↵ | | 3 | }↵
|
|
4 | public void testIstrueNot() {↵ | | 4 | public void testIsfalseNot() {↵
|
5 | expectPropertyUnset("istrue-not","istrue-not");↵ | | 5 | expectPropertySet("isfalse-not","isfalse-not");↵
|
6 | }↵ | | 6 | }↵
|
|
7 | public void testIstrueFalse() {↵ | | 7 | public void testIsfalseFalse() {↵
|
8 | expectPropertyUnset("istrue-false","istrue-false");↵ | | 8 | expectPropertySet("isfalse-false","isfalse-false");↵
|
9 | }↵ | | 9 | }↵
|
|
|
10 | public void testIstrueIncomplete1() {↵ | | 10 | public void testIsfalseIncomplete1() {↵
|
11 | expectSpecificBuildException("istrue-incomplete",↵ | | 11 | expectSpecificBuildException("isfalse-incomplete",↵
|
12 | "Missing attribute",↵ | | 12 | "Missing attribute",↵
|
13 | "Nothing to test for truth");↵ | | 13 | "Nothing to test for falsehood");↵
|
14 | | | 14 |
|