|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Objectlejosunit.framework.Assert
A set of assert methods.
lejosunit changes:
ignore now all string parameter for the assert and fail methods. Reduces string handling
| Constructor Summary | |
protected |
Assert()
Protect constructor since it is a static only class |
| Method Summary | |
static void |
assertEquals(boolean expected,
boolean actual)
Asserts that two booleans are equal. |
static void |
assertEquals(byte expected,
byte actual)
Asserts that two bytes are equal. |
static void |
assertEquals(char expected,
char actual)
Asserts that two chars are equal. |
static void |
assertEquals(int expected,
int actual)
Asserts that two ints are equal. |
static void |
assertEquals(long expected,
long actual)
Asserts that two longs are equal. |
static void |
assertEquals(java.lang.Object expected,
java.lang.Object actual)
Asserts that two objects are equal. |
static void |
assertEquals(short expected,
short actual)
Asserts that two shorts are equal. |
static void |
assertEquals(java.lang.String message,
boolean expected,
boolean actual)
Asserts that two booleans are equal. |
static void |
assertEquals(java.lang.String message,
byte expected,
byte actual)
Asserts that two bytes are equal. |
static void |
assertEquals(java.lang.String message,
char expected,
char actual)
Asserts that two chars are equal. |
static void |
assertEquals(java.lang.String message,
int expected,
int actual)
Asserts that two ints are equal. |
static void |
assertEquals(java.lang.String message,
long expected,
long actual)
Asserts that two longs are equal. |
static void |
assertEquals(java.lang.String message,
java.lang.Object expected,
java.lang.Object actual)
Asserts that two objects are equal. |
static void |
assertEquals(java.lang.String message,
short expected,
short actual)
Asserts that two shorts are equal. |
static void |
assertFalse(boolean condition)
Asserts that a condition is false. |
static void |
assertFalse(java.lang.String message,
boolean condition)
Asserts that a condition is false. |
static void |
assertNotNull(java.lang.Object object)
Asserts that an object isn't null. |
static void |
assertNotNull(java.lang.String message,
java.lang.Object object)
Asserts that an object isn't null. |
static void |
assertNotSame(java.lang.Object expected,
java.lang.Object actual)
Asserts that two objects refer not to the same object. |
static void |
assertNotSame(java.lang.String message,
java.lang.Object expected,
java.lang.Object actual)
Asserts that two objects refer NOT to the same object. |
static void |
assertNull(java.lang.Object object)
Asserts that an object is null. |
static void |
assertNull(java.lang.String message,
java.lang.Object object)
Asserts that an object is null. |
static void |
assertSame(java.lang.Object expected,
java.lang.Object actual)
Asserts that two objects refer to the same object. |
static void |
assertSame(java.lang.String message,
java.lang.Object expected,
java.lang.Object actual)
Asserts that two objects refer to the same object. |
static void |
assertTrue(boolean condition)
Asserts that a condition is true. |
static void |
assertTrue(java.lang.String message,
boolean condition)
Asserts that a condition is true. |
static void |
fail()
Fails a test with no message. |
static void |
fail(java.lang.String message)
Fails a test with the given message. |
protected static void |
failNotEquals(java.lang.Object expected,
java.lang.Object actual)
Helper method to print out the result |
protected static void |
failSame(java.lang.Object expected,
java.lang.Object actual,
boolean same)
Helper method to print out the result |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
protected Assert()
| Method Detail |
public static void assertTrue(java.lang.String message,
boolean condition)
message - the assertion messagecondition - the condition to be tested
public static void assertFalse(java.lang.String message,
boolean condition)
message - the assertion messagecondition - the condition to be testedpublic static void assertTrue(boolean condition)
condition - the condition to be testedpublic static void assertFalse(boolean condition)
condition - the condition to be testedpublic static void fail(java.lang.String message)
message - the assertion messagepublic static void fail()
public static void assertEquals(java.lang.String message,
java.lang.Object expected,
java.lang.Object actual)
message - the assertion messageexpected - the expected valueactual - the actual value to be tested
public static void assertEquals(java.lang.Object expected,
java.lang.Object actual)
expected - the expected valueactual - the actual value to be tested
public static void assertEquals(java.lang.String message,
long expected,
long actual)
message - the assertion messageexpected - the expected valueactual - the actual value to be tested
public static void assertEquals(long expected,
long actual)
expected - the expected valueactual - the actual value to be tested
public static void assertEquals(java.lang.String message,
boolean expected,
boolean actual)
message - the assertion messageexpected - the expected valueactual - the actual value to be tested
public static void assertEquals(boolean expected,
boolean actual)
expected - the expected valueactual - the actual value to be tested
public static void assertEquals(java.lang.String message,
byte expected,
byte actual)
message - the assertion messageexpected - the expected valueactual - the actual value to be tested
public static void assertEquals(byte expected,
byte actual)
expected - the expected valueactual - the actual value to be tested
public static void assertEquals(java.lang.String message,
char expected,
char actual)
message - the assertion messageexpected - the expected valueactual - the actual value to be tested
public static void assertEquals(char expected,
char actual)
expected - the expected valueactual - the actual value to be tested
public static void assertEquals(java.lang.String message,
short expected,
short actual)
message - the assertion messageexpected - the expected valueactual - the actual value to be tested
public static void assertEquals(short expected,
short actual)
expected - the expected valueactual - the actual value to be tested
public static void assertEquals(java.lang.String message,
int expected,
int actual)
message - the assertion messageexpected - the expected valueactual - the actual value to be tested
public static void assertEquals(int expected,
int actual)
expected - the expected valueactual - the actual value to be testedpublic static void assertNotNull(java.lang.Object object)
object - the object to be tested
public static void assertNotNull(java.lang.String message,
java.lang.Object object)
message - the assertion messageobject - the object to be testedpublic static void assertNull(java.lang.Object object)
object - the object to be tested
public static void assertNull(java.lang.String message,
java.lang.Object object)
message - the assertion messageobject - the object to be tested
public static void assertSame(java.lang.String message,
java.lang.Object expected,
java.lang.Object actual)
message - the assertion messageexpected - the expected valueactual - the actual value to be tested
public static void assertSame(java.lang.Object expected,
java.lang.Object actual)
expected - the expected valueactual - the actual value to be tested
public static void assertNotSame(java.lang.String message,
java.lang.Object expected,
java.lang.Object actual)
message - the assertion messageexpected - the expected valueactual - the actual value to be tested
public static void assertNotSame(java.lang.Object expected,
java.lang.Object actual)
expected - the expected valueactual - the actual value to be tested
protected static void failNotEquals(java.lang.Object expected,
java.lang.Object actual)
expected - the expected valueactual - the actual value to be tested
protected static void failSame(java.lang.Object expected,
java.lang.Object actual,
boolean same)
expected - the expected valueactual - the actual value to be testedsame - true, if we expect the same
|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||