|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object junit.framework.Assert junit.framework.TestCase
public abstract class TestCase
A test case defines the fixture to run multiple tests. To define a test case
TestCase
setUp()
tearDown()
.public class MathTest extends TestCase { protected double fValue1; protected double fValue2; protected void setUp() { fValue1= 2.0; fValue2= 3.0; } }For each test implement a method which interacts with the fixture. Verify the expected results with assertions specified by calling
Assert.assertTrue(String, boolean)
with a boolean.
public void testAdd() { double result= fValue1 + fValue2; assertTrue(result == 5.0); }Once the methods are defined you can run them. The framework supports both a static type safe and more dynamic way to run a test. In the static way you override the runTest method and define the method to be invoked. A convenient way to do so is with an anonymous inner class.
TestCase test= new MathTest("add") { public void runTest() { testAdd(); } }; test.run();The dynamic way uses reflection to implement
runTest()
. It dynamically finds
and invokes a method.
In this case the name of the test case has to correspond to the test method
to be run.
TestCase test= new MathTest("testAdd"); test.run();The tests to be run can be collected into a TestSuite. JUnit provides different test runners which can run a test suite and collect the results. A test runner either expects a static method
suite
as the entry
point to get a test to run or it will extract the suite automatically.
public static Test suite() { suite.addTest(new MathTest("testAdd")); suite.addTest(new MathTest("testDivideByZero")); return suite; }
TestResult
,
TestSuite
Constructor Summary | |
---|---|
TestCase()
No-arg constructor to enable serialization. |
|
TestCase(String name)
Constructs a test case with the given name. |
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(double expected,
double actual,
double delta)
Asserts that two doubles are equal concerning a delta. |
static void |
assertEquals(float expected,
float actual,
float delta)
Asserts that two floats are equal concerning a delta. |
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(Object expected,
Object actual)
Asserts that two objects are equal. |
static void |
assertEquals(short expected,
short actual)
Asserts that two shorts are equal. |
static void |
assertEquals(String message,
boolean expected,
boolean actual)
Asserts that two booleans are equal. |
static void |
assertEquals(String message,
byte expected,
byte actual)
Asserts that two bytes are equal. |
static void |
assertEquals(String message,
char expected,
char actual)
Asserts that two chars are equal. |
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,
float expected,
float actual,
float delta)
Asserts that two floats are equal concerning a positive delta. |
static void |
assertEquals(String message,
int expected,
int actual)
Asserts that two ints are equal. |
static void |
assertEquals(String message,
long expected,
long actual)
Asserts that two longs are equal. |
static void |
assertEquals(String message,
Object expected,
Object actual)
Asserts that two objects are equal. |
static void |
assertEquals(String message,
short expected,
short actual)
Asserts that two shorts are equal. |
static void |
assertEquals(String expected,
String actual)
Asserts that two Strings are equal. |
static void |
assertEquals(String message,
String expected,
String actual)
Asserts that two Strings are equal. |
static void |
assertFalse(boolean condition)
Asserts that a condition is false. |
static void |
assertFalse(String message,
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(Object expected,
Object actual)
Asserts that two objects do not refer to the same object. |
static void |
assertNotSame(String message,
Object expected,
Object actual)
Asserts that two objects do not refer to the same object. |
static void |
assertNull(Object object)
Asserts that an object is null. |
static void |
assertNull(String message,
Object object)
Asserts that an object is null. |
static void |
assertSame(Object expected,
Object actual)
Asserts that two objects refer to the same object. |
static void |
assertSame(String message,
Object expected,
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(String message,
boolean condition)
Asserts that a condition is true. |
int |
countTestCases()
Counts the number of test cases executed by run(TestResult result). |
protected TestResult |
createResult()
Creates a default TestResult object. |
static void |
fail()
Fails a test with no message. |
static void |
fail(String message)
Fails a test with the given 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)
|
String |
getName()
Gets the name of a TestCase. |
TestResult |
run()
A convenience method to run this test, collecting the results with a default TestResult object. |
void |
run(TestResult result)
Runs the test case and collects the results in TestResult. |
void |
runBare()
Runs the bare test sequence. |
protected void |
runTest()
Override to run the test and assert its state. |
void |
setName(String name)
Sets the name of a TestCase. |
protected void |
setUp()
Sets up the fixture, for example, open a network connection. |
protected void |
tearDown()
Tears down the fixture, for example, close a network connection. |
String |
toString()
Returns a string representation of the test case. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public TestCase()
public TestCase(String name)
Method Detail |
---|
public int countTestCases()
countTestCases
in interface Test
protected TestResult createResult()
TestResult
public TestResult run()
TestResult
public void run(TestResult result)
run
in interface Test
public void runBare() throws Throwable
Throwable
- if any exception is thrownprotected void runTest() throws Throwable
Throwable
- if any exception is thrownpublic static void assertTrue(String message, boolean condition)
public static void assertTrue(boolean condition)
public static void assertFalse(String message, boolean condition)
public static void assertFalse(boolean condition)
public static void fail(String message)
public static void fail()
public static void assertEquals(String message, Object expected, Object actual)
public static void assertEquals(Object expected, Object actual)
public static void assertEquals(String message, String expected, String actual)
public static void assertEquals(String expected, String actual)
public static void assertEquals(String message, double expected, double actual, double delta)
public static void assertEquals(double expected, double actual, double delta)
public static void assertEquals(String message, float expected, float actual, float delta)
public static void assertEquals(float expected, float actual, float delta)
public static void assertEquals(String message, long expected, long actual)
public static void assertEquals(long expected, long actual)
public static void assertEquals(String message, boolean expected, boolean actual)
public static void assertEquals(boolean expected, boolean actual)
public static void assertEquals(String message, byte expected, byte actual)
public static void assertEquals(byte expected, byte actual)
public static void assertEquals(String message, char expected, char actual)
public static void assertEquals(char expected, char actual)
public static void assertEquals(String message, short expected, short actual)
public static void assertEquals(short expected, short actual)
public static void assertEquals(String message, int expected, int actual)
public static void assertEquals(int expected, int actual)
public static void assertNotNull(Object object)
public static void assertNotNull(String message, Object object)
public static void assertNull(Object object)
AssertionError
is
thrown.
Message contains: Expected:
object
- Object to check or null
public static void assertNull(String message, Object object)
public static void assertSame(String message, Object expected, Object actual)
public static void assertSame(Object expected, Object actual)
public static void assertNotSame(String message, Object expected, Object actual)
public static void assertNotSame(Object expected, Object actual)
public static void failSame(String message)
public static void failNotSame(String message, Object expected, Object actual)
public static void failNotEquals(String message, Object expected, Object actual)
public static String format(String message, Object expected, Object actual)
protected void setUp() throws Exception
Exception
protected void tearDown() throws Exception
Exception
public String toString()
toString
in class Object
public String getName()
public void setName(String name)
name
- the name to set
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |