public
class
Assert
extends Object
java.lang.Object | |
↳ | junit.framework.Assert |
Known Direct Subclasses |
Known Indirect Subclasses
ActivityInstrumentationTestCase<T extends Activity>,
ActivityInstrumentationTestCase2<T extends Activity>,
ActivityTestCase,
ActivityUnitTestCase<T extends Activity>,
AndroidTestCase,
ApplicationTestCase<T extends Application>,
InstrumentationTestCase,
LoaderTestCase,
ProviderTestCase<T extends ContentProvider>,
ProviderTestCase2<T extends ContentProvider>,
ServiceTestCase<T extends Service>,
SingleLaunchActivityTestCase<T extends Activity>,
SyncBaseInstrumentation,
TestSuiteBuilder.FailedToCreateTests
|
A set of assert methods. Messages are only displayed when an assert fails.
Protected constructors | |
---|---|
Assert()
Protect constructor since it is a static only class |
Public methods | |
---|---|
static
void
|
assertEquals(boolean expected, boolean actual)
Asserts that two booleans are equal. |
static
void
|
assertEquals(String message, long expected, long actual)
Asserts that two longs are equal. |
static
void
|
assertEquals(short expected, short actual)
Asserts that two shorts are equal. |
static
void
|
assertEquals(String message, String expected, String actual)
Asserts that two Strings are equal. |
static
void
|
assertEquals(String message, int expected, int actual)
Asserts that two ints are equal. |
static
void
|
assertEquals(Object expected, Object actual)
Asserts that two objects are equal. |
static
void
|
assertEquals(String message, boolean expected, boolean actual)
Asserts that two booleans are equal. |
static
void
|
assertEquals(String expected, String actual)
Asserts that two Strings are equal. |
static
void
|
assertEquals(String message, short expected, short actual)
Asserts that two shorts are equal. |
static
void
|
assertEquals(String message, Object expected, Object actual)
Asserts that two objects are equal. |
static
void
|
assertEquals(char expected, char actual)
Asserts that two chars are equal. |
static
void
|
assertEquals(byte expected, byte actual)
Asserts that two bytes are equal. |
static
void
|
assertEquals(double expected, double actual, double delta)
Asserts that two doubles are equal concerning a delta. |
static
void
|
assertEquals(String message, char expected, char actual)
Asserts that two chars are equal. |
static
void
|
assertEquals(float expected, float actual, float delta)
Asserts that two floats are equal concerning a delta. |
static
void
|
assertEquals(String message, double expected, double actual, double delta)
Asserts that two doubles are equal concerning a delta. |
static
void
|
assertEquals(String message, byte expected, byte actual)
Asserts that two bytes are equal. |
static
void
|
assertEquals(String message, float expected, float actual, float delta)
Asserts that two floats are equal concerning a positive delta. |
static
void
|
assertEquals(long expected, long actual)
Asserts that two longs are equal. |
static
void
|
assertEquals(int expected, int actual)
Asserts that two ints are equal. |
static
void
|
assertFalse(String message, boolean condition)
Asserts that a condition is false. |
static
void
|
assertFalse(boolean condition)
Asserts that a condition is false. |
static
void
|
assertNotNull(Object object)
Asserts that an object isn't null. |
static
void
|
assertNotNull(String message, Object object)
Asserts that an object isn't null. |
static
void
|
assertNotSame(String message, Object expected, Object actual)
Asserts that two objects do not refer to the same object. |
static
void
|
assertNotSame(Object expected, Object actual)
Asserts that two objects do not refer to the same object. |
static
void
|
assertNull(String message, Object object)
Asserts that an object is null. |
static
void
|
assertNull(Object object)
Asserts that an object is null. |
static
void
|
assertSame(String message, Object expected, Object actual)
Asserts that two objects refer to the same object. |
static
void
|
assertSame(Object expected, Object actual)
Asserts that two objects refer to the same object. |
static
void
|
assertTrue(String message, boolean condition)
Asserts that a condition is true. |
static
void
|
assertTrue(boolean condition)
Asserts that a condition is true. |
static
void
|
fail(String message)
Fails a test with the given message. |
static
void
|
fail()
Fails a test with no message. |
static
void
|
failNotEquals(String message, Object expected, Object actual)
|
static
void
|
failNotSame(String message, Object expected, Object actual)
|
static
void
|
failSame(String message)
|
static
String
|
format(String message, Object expected, Object actual)
|
Inherited methods | |
---|---|
From
class
java.lang.Object
|
void assertEquals (boolean expected, boolean actual)
Asserts that two booleans are equal.
Parameters | |
---|---|
expected |
boolean
|
actual |
boolean
|
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.
Parameters | |
---|---|
message |
String
|
expected |
long
|
actual |
long
|
void assertEquals (short expected, short actual)
Asserts that two shorts are equal.
Parameters | |
---|---|
expected |
short
|
actual |
short
|
void assertEquals (String message, String expected, String actual)
Asserts that two Strings are equal.
Parameters | |
---|---|
message |
String
|
expected |
String
|
actual |
String
|
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.
Parameters | |
---|---|
message |
String
|
expected |
int
|
actual |
int
|
void assertEquals (Object expected, Object actual)
Asserts that two objects are equal. If they are not an AssertionFailedError is thrown.
Parameters | |
---|---|
expected |
Object
|
actual |
Object
|
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.
Parameters | |
---|---|
message |
String
|
expected |
boolean
|
actual |
boolean
|
void assertEquals (String expected, String actual)
Asserts that two Strings are equal.
Parameters | |
---|---|
expected |
String
|
actual |
String
|
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.
Parameters | |
---|---|
message |
String
|
expected |
short
|
actual |
short
|
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.
Parameters | |
---|---|
message |
String
|
expected |
Object
|
actual |
Object
|
void assertEquals (char expected, char actual)
Asserts that two chars are equal.
Parameters | |
---|---|
expected |
char
|
actual |
char
|
void assertEquals (byte expected, byte actual)
Asserts that two bytes are equal.
Parameters | |
---|---|
expected |
byte
|
actual |
byte
|
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.
Parameters | |
---|---|
expected |
double
|
actual |
double
|
delta |
double
|
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.
Parameters | |
---|---|
message |
String
|
expected |
char
|
actual |
char
|
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.
Parameters | |
---|---|
expected |
float
|
actual |
float
|
delta |
float
|
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.
Parameters | |
---|---|
message |
String
|
expected |
double
|
actual |
double
|
delta |
double
|
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.
Parameters | |
---|---|
message |
String
|
expected |
byte
|
actual |
byte
|
void assertEquals (String message, float expected, float actual, float delta)
Asserts that two floats are equal concerning a positive 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.
Parameters | |
---|---|
message |
String
|
expected |
float
|
actual |
float
|
delta |
float
|
void assertEquals (long expected, long actual)
Asserts that two longs are equal.
Parameters | |
---|---|
expected |
long
|
actual |
long
|
void assertEquals (int expected, int actual)
Asserts that two ints are equal.
Parameters | |
---|---|
expected |
int
|
actual |
int
|
void assertFalse (String message, boolean condition)
Asserts that a condition is false. If it isn't it throws an AssertionFailedError with the given message.
Parameters | |
---|---|
message |
String
|
condition |
boolean
|
void assertFalse (boolean condition)
Asserts that a condition is false. If it isn't it throws an AssertionFailedError.
Parameters | |
---|---|
condition |
boolean
|
void assertNotNull (Object object)
Asserts that an object isn't null.
Parameters | |
---|---|
object |
Object
|
void assertNotNull (String message, Object object)
Asserts that an object isn't null. If it is an AssertionFailedError is thrown with the given message.
Parameters | |
---|---|
message |
String
|
object |
Object
|
void assertNotSame (String message, Object expected, Object actual)
Asserts that two objects do not refer to the same object. If they do refer to the same object an AssertionFailedError is thrown with the given message.
Parameters | |
---|---|
message |
String
|
expected |
Object
|
actual |
Object
|
void assertNotSame (Object expected, Object actual)
Asserts that two objects do not refer to the same object. If they do refer to the same object an AssertionFailedError is thrown.
Parameters | |
---|---|
expected |
Object
|
actual |
Object
|
void assertNull (String message, Object object)
Asserts that an object is null. If it is not an AssertionFailedError is thrown with the given message.
Parameters | |
---|---|
message |
String
|
object |
Object
|
void assertNull (Object object)
Asserts that an object is null. If it isn't an AssertionError
is
thrown.
Message contains: Expected:
Parameters | |
---|---|
object |
Object :
Object to check or null
|
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.
Parameters | |
---|---|
message |
String
|
expected |
Object
|
actual |
Object
|
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.
Parameters | |
---|---|
expected |
Object
|
actual |
Object
|
void assertTrue (String message, boolean condition)
Asserts that a condition is true. If it isn't it throws an AssertionFailedError with the given message.
Parameters | |
---|---|
message |
String
|
condition |
boolean
|
void assertTrue (boolean condition)
Asserts that a condition is true. If it isn't it throws an AssertionFailedError.
Parameters | |
---|---|
condition |
boolean
|
void fail (String message)
Fails a test with the given message.
Parameters | |
---|---|
message |
String
|
void failNotEquals (String message, Object expected, Object actual)
Parameters | |
---|---|
message |
String
|
expected |
Object
|
actual |
Object
|
void failNotSame (String message, Object expected, Object actual)
Parameters | |
---|---|
message |
String
|
expected |
Object
|
actual |
Object
|