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