Home | History | Annotate | Download | only in framework

Lines Matching refs:condition

15      * Asserts that a condition is true. If it isn't it throws
18 static public void assertTrue(String message, boolean condition) {
19 if (!condition)
23 * Asserts that a condition is true. If it isn't it throws
26 static public void assertTrue(boolean condition) {
27 assertTrue(null, condition);
30 * Asserts that a condition is false. If it isn't it throws
33 static public void assertFalse(String message, boolean condition) {
34 assertTrue(message, !condition);
37 * Asserts that a condition is false. If it isn't it throws
40 static public void assertFalse(boolean condition) {
41 assertFalse(null, condition);