junit.framework.Assert
A set of assert methods. Messages are only displayed when an assert fails.
Known Direct Subclasses
Known Indirect Subclasses
Summary
Protected Constructors
Public Methods
|
|
|
static |
|
void |
assertEquals(long expected, long actual) |
|
|
|
static |
|
void |
assertEquals(String message, byte expected, byte actual) |
|
|
|
static |
|
void |
assertEquals(String message, short expected, short actual) |
|
|
|
static |
|
void |
assertEquals(boolean expected, boolean actual) |
|
|
|
static |
|
void |
assertEquals(String message, char expected, char actual) |
|
|
|
static |
|
void |
assertEquals(String message, float expected, float actual, float delta) |
|
|
|
static |
|
void |
assertEquals(String message, double expected, double actual, double delta) |
|
|
|
static |
|
void |
assertEquals(byte expected, byte actual) |
|
|
|
static |
|
void |
assertEquals(String message, String expected, String actual) |
|
|
|
static |
|
void |
assertEquals(double expected, double actual, double delta) |
|
|
|
static |
|
void |
assertEquals(String message, long expected, long actual) |
|
|
|
static |
|
void |
assertEquals(String message, int expected, int actual) |
|
|
|
static |
|
void |
assertEquals(char expected, char actual) |
|
|
|
static |
|
void |
assertEquals(String message, Object expected, Object actual) |
|
|
|
static |
|
void |
assertEquals(Object expected, Object actual) |
|
|
|
static |
|
void |
assertEquals(short expected, short actual) |
|
|
|
static |
|
void |
assertEquals(float expected, float actual, float delta) |
|
|
|
static |
|
void |
assertEquals(int expected, int actual) |
|
|
|
static |
|
void |
assertEquals(String expected, String actual) |
|
|
|
static |
|
void |
assertEquals(String message, boolean expected, boolean actual) |
|
|
|
static |
|
void |
assertFalse(boolean condition) |
|
|
|
static |
|
void |
assertFalse(String message, boolean condition) |
|
|
|
static |
|
void |
assertNotNull(String message, Object object) |
|
|
|
static |
|
void |
assertNotNull(Object object) |
|
|
|
static |
|
void |
assertNotSame(Object expected, Object actual) |
|
|
|
static |
|
void |
assertNotSame(String message, Object expected, Object actual) |
|
|
|
static |
|
void |
assertNull(String message, Object object) |
|
|
|
static |
|
void |
assertNull(Object object) |
|
|
|
static |
|
void |
assertSame(String message, Object expected, Object actual) |
|
|
|
static |
|
void |
assertSame(Object expected, Object actual) |
|
|
|
static |
|
void |
assertTrue(String message, boolean condition) |
|
|
|
static |
|
void |
assertTrue(boolean condition) |
|
|
|
static |
|
void |
fail() |
|
|
|
static |
|
void |
fail(String message) |
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait
Details
Protected Constructors
protected
Assert()
Protect constructor since it is a static only class
Public Methods
public
static
void
assertEquals(long expected, long actual)
Asserts that two longs are equal.
public
static
void
assertEquals(String message, byte expected, byte actual)
Asserts that two bytes are equal. If they are not
an AssertionFailedError is thrown with the given message.
public
static
void
assertEquals(String message, short expected, short actual)
Asserts that two shorts are equal. If they are not
an AssertionFailedError is thrown with the given message.
public
static
void
assertEquals(boolean expected, boolean actual)
Asserts that two booleans are equal.
public
static
void
assertEquals(String message, char expected, char actual)
Asserts that two chars are equal. If they are not
an AssertionFailedError is thrown with the given message.
public
static
void
assertEquals(String message, float expected, float actual, float delta)
Asserts that two floats are equal concerning a delta. If they are not
an AssertionFailedError is thrown with the given message. If the expected
value is infinity then the delta value is ignored.
public
static
void
assertEquals(String message, double expected, double actual, double delta)
Asserts that two doubles are equal concerning a delta. If they are not
an AssertionFailedError is thrown with the given message. If the expected
value is infinity then the delta value is ignored.
public
static
void
assertEquals(byte expected, byte actual)
Asserts that two bytes are equal.
public
static
void
assertEquals(String message, String expected, String actual)
Asserts that two Strings are equal.
public
static
void
assertEquals(double expected, double actual, double delta)
Asserts that two doubles are equal concerning a delta. If the expected
value is infinity then the delta value is ignored.
public
static
void
assertEquals(String message, long expected, long actual)
Asserts that two longs are equal. If they are not
an AssertionFailedError is thrown with the given message.
public
static
void
assertEquals(String message, int expected, int actual)
Asserts that two ints are equal. If they are not
an AssertionFailedError is thrown with the given message.
public
static
void
assertEquals(char expected, char actual)
Asserts that two chars are equal.
public
static
void
assertEquals(String message, Object expected, Object actual)
Asserts that two objects are equal. If they are not
an AssertionFailedError is thrown with the given message.
public
static
void
assertEquals(Object expected, Object actual)
Asserts that two objects are equal. If they are not
an AssertionFailedError is thrown.
public
static
void
assertEquals(short expected, short actual)
Asserts that two shorts are equal.
public
static
void
assertEquals(float expected, float actual, float delta)
Asserts that two floats are equal concerning a delta. If the expected
value is infinity then the delta value is ignored.
public
static
void
assertEquals(int expected, int actual)
Asserts that two ints are equal.
public
static
void
assertEquals(String expected, String actual)
Asserts that two Strings are equal.
public
static
void
assertEquals(String message, boolean expected, boolean actual)
Asserts that two booleans are equal. If they are not
an AssertionFailedError is thrown with the given message.
public
static
void
assertFalse(boolean condition)
Asserts that a condition is false. If it isn't it throws
an AssertionFailedError.
public
static
void
assertFalse(String message, boolean condition)
Asserts that a condition is false. If it isn't it throws
an AssertionFailedError with the given message.
public
static
void
assertNotNull(String message, Object object)
Asserts that an object isn't null. If it is
an AssertionFailedError is thrown with the given message.
public
static
void
assertNotNull(Object object)
Asserts that an object isn't null.
public
static
void
assertNotSame(Object expected, Object actual)
Asserts that two objects refer to the same object. If they are not
the same an AssertionFailedError is thrown.
public
static
void
assertNotSame(String message, Object expected, Object actual)
Asserts that two objects refer to the same object. If they are not
an AssertionFailedError is thrown with the given message.
public
static
void
assertNull(String message, Object object)
Asserts that an object is null. If it is not
an AssertionFailedError is thrown with the given message.
public
static
void
assertNull(Object object)
Asserts that an object is null.
public
static
void
assertSame(String message, Object expected, Object actual)
Asserts that two objects refer to the same object. If they are not
an AssertionFailedError is thrown with the given message.
public
static
void
assertSame(Object expected, Object actual)
Asserts that two objects refer to the same object. If they are not
the same an AssertionFailedError is thrown.
public
static
void
assertTrue(String message, boolean condition)
Asserts that a condition is true. If it isn't it throws
an AssertionFailedError with the given message.
public
static
void
assertTrue(boolean condition)
Asserts that a condition is true. If it isn't it throws
an AssertionFailedError.
public
static
void
fail()
Fails a test with no message.
public
static
void
fail(String message)
Fails a test with the given message.