Uses of Class
jmunit.framework.cldc11.AssertionFailedException

Packages that use AssertionFailedException
jmunit.framework.cldc11   
 

Uses of AssertionFailedException in jmunit.framework.cldc11
 

Methods in jmunit.framework.cldc11 that throw AssertionFailedException
static void Assertion.assertEquals(boolean expected, boolean actual)
          Assert if the expected boolean and the actual boolean are equal.
static void Assertion.assertEquals(byte expected, byte actual)
          Assert if the expected byte and the actual byte are equal.
static void Assertion.assertEquals(char expected, char actual)
          Assert if the expected char and the actual char are equal.
static void Assertion.assertEquals(double expected, double actual)
          Assert if the expected double and the actual double are equal.
static void Assertion.assertEquals(float expected, float actual)
          Assert if the expected float and the actual float are equal.
static void Assertion.assertEquals(int expected, int actual)
          Assert if the expected int and the actual int are equal.
static void Assertion.assertEquals(long expected, long actual)
          Assert if the expected long and the actual long are equal.
static void Assertion.assertEquals(java.lang.Object expected, java.lang.Object actual)
          Assert if the expected object and the actual object are equal.
static void Assertion.assertEquals(short expected, short actual)
          Assert if the expected short and the actual short are equal.
static void Assertion.assertEquals(java.lang.String test, boolean expected, boolean actual)
          Assert if the expected boolean and the actual boolean are equal.
static void Assertion.assertEquals(java.lang.String test, byte expected, byte actual)
          Assert if the expected byte and the actual byte are equal.
static void Assertion.assertEquals(java.lang.String test, char expected, char actual)
          Assert if the expected char and the actual char are equal.
static void Assertion.assertEquals(java.lang.String test, double expected, double actual)
          Assert if the expected double and the actual double are equal.
static void Assertion.assertEquals(java.lang.String test, float expected, float actual)
          Assert if the expected float and the actual float are equal.
static void Assertion.assertEquals(java.lang.String test, int expected, int actual)
          Assert if the expected int and the actual int are equal.
static void Assertion.assertEquals(java.lang.String test, long expected, long actual)
          Assert if the expected long and the actual long are equal.
static void Assertion.assertEquals(java.lang.String test, java.lang.Object expected, java.lang.Object actual)
          Assert if the expected object and the actual object are equal.
static void Assertion.assertEquals(java.lang.String test, short expected, short actual)
          Assert if the expected short and the actual short are equal.
static void Assertion.assertEquals(java.lang.String expected, java.lang.String actual)
          Assert if the expected String and the actual String are equal.
static void Assertion.assertEquals(java.lang.String test, java.lang.String expected, java.lang.String actual)
          Assert if the expected String and the actual String are equal.
static void Assertion.assertFalse(boolean expression)
          Assert if the boolean expression is false.
static void Assertion.assertFalse(java.lang.String test, boolean expression)
          Assert if the boolean expression is false.
static void Assertion.assertNotEquals(boolean expected, boolean actual)
          Assert if the expected boolean and the actual boolean aren't equal.
static void Assertion.assertNotEquals(byte expected, byte actual)
          Assert if the expected byte and the actual byte aren't equal.
static void Assertion.assertNotEquals(char expected, char actual)
          Assert if the expected char and the actual char aren't equal.
static void Assertion.assertNotEquals(double expected, double actual)
          Assert if the expected double and the actual double aren't equal.
static void Assertion.assertNotEquals(float expected, float actual)
          Assert if the expected float and the actual float aren't equal.
static void Assertion.assertNotEquals(int expected, int actual)
          Assert if the expected int and the actual int aren't equal.
static void Assertion.assertNotEquals(long expected, long actual)
          Assert if the expected long and the actual long aren't equal.
static void Assertion.assertNotEquals(java.lang.Object expected, java.lang.Object actual)
          Assert if the expected object and the actual object aren't equal.
static void Assertion.assertNotEquals(short expected, short actual)
          Assert if the expected short and the actual short aren't equal.
static void Assertion.assertNotEquals(java.lang.String test, boolean expected, boolean actual)
          Assert if the expected boolean and the actual boolean aren't equal.
static void Assertion.assertNotEquals(java.lang.String test, byte expected, byte actual)
          Assert if the expected byte and the actual byte aren't equal.
static void Assertion.assertNotEquals(java.lang.String test, char expected, char actual)
          Assert if the expected char and the actual char aren't equal.
static void Assertion.assertNotEquals(java.lang.String test, double expected, double actual)
          Assert if the expected double and the actual double aren't equal.
static void Assertion.assertNotEquals(java.lang.String test, float expected, float actual)
          Assert if the expected float and the actual float aren't equal.
static void Assertion.assertNotEquals(java.lang.String test, int expected, int actual)
          Assert if the expected int and the actual int aren't equal.
static void Assertion.assertNotEquals(java.lang.String test, long expected, long actual)
          Assert if the expected long and the actual long aren't equal.
static void Assertion.assertNotEquals(java.lang.String test, java.lang.Object expected, java.lang.Object actual)
          Assert if the expected object and the actual object aren't equal.
static void Assertion.assertNotEquals(java.lang.String test, short expected, short actual)
          Assert if the expected short and the actual short aren't equal.
static void Assertion.assertNotEquals(java.lang.String expected, java.lang.String actual)
          Assert if the expected String and the actual String aren't equal.
static void Assertion.assertNotEquals(java.lang.String test, java.lang.String expected, java.lang.String actual)
          Assert if the expected String and the actual String aren't equal.
static void Assertion.assertNotNull(java.lang.Object object)
          Assert if the object isn't null.
static void Assertion.assertNotNull(java.lang.String test, java.lang.Object object)
          Assert if the object isn't null.
static void Assertion.assertNotSame(java.lang.Object expected, java.lang.Object actual)
          Assert if the expected object and the actual object aren't the same.
static void Assertion.assertNotSame(java.lang.String test, java.lang.Object expected, java.lang.Object actual)
          Assert if the expected object and the actual object aren't the same.
static void Assertion.assertNull(java.lang.Object object)
          Assert if the object is null.
static void Assertion.assertNull(java.lang.String test, java.lang.Object object)
          Assert if the object is null.
static void Assertion.assertSame(java.lang.Object expected, java.lang.Object actual)
          Assert if the expected object and the actual object are the same.
static void Assertion.assertSame(java.lang.String test, java.lang.Object expected, java.lang.Object actual)
          Assert if the expected object and the actual object are the same.
static void Assertion.assertTrue(boolean expression)
          Assert if the boolean expression is true.
static void Assertion.assertTrue(java.lang.String test, boolean expression)
          Assert if the boolean expression is true.
static void Assertion.fail()
          This method is used to notify the framework that a assertion failed.
static void Assertion.fail(java.lang.String test)
          This method is used to notify the framework that a assertion failed.
static void Assertion.fail(java.lang.String test, boolean expected, boolean actual)
          This method is used to notify the framework that a assertion failed.
static void Assertion.fail(java.lang.String test, byte expected, byte actual)
          This method is used to notify the framework that a assertion failed.
static void Assertion.fail(java.lang.String test, char expected, char actual)
          This method is used to notify the framework that a assertion failed.
static void Assertion.fail(java.lang.String test, double expected, double actual)
          This method is used to notify the framework that a assertion failed.
static void Assertion.fail(java.lang.String test, float expected, float actual)
          This method is used to notify the framework that a assertion failed.
static void Assertion.fail(java.lang.String test, int expected, int actual)
          This method is used to notify the framework that a assertion failed.
static void Assertion.fail(java.lang.String test, long expected, long actual)
          This method is used to notify the framework that a assertion failed.
static void Assertion.fail(java.lang.String test, java.lang.Object expected, java.lang.Object actual)
          This method is used to notify the framework that a assertion failed.
static void Assertion.fail(java.lang.String test, short expected, short actual)
          This method is used to notify the framework that a assertion failed.
static void Assertion.fail(java.lang.String test, java.lang.String expected, java.lang.String actual)
          This method is used to notify the framework that a assertion failed.