|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectlejosunit.framework.Assert
lejosunit.framework.TestCase
A test case defines the fixture to run multiple tests.
To define a test case
setUp
tearDown
.public class MathTest extends TestCase { protected double fValue1; protected double fValue2; public MathTest(String name) { super(name); } 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
with a boolean.
protected void testAdd() { double result= fValue1 + fValue2; assert(result == 5.0); }lejosunit does NOT support Java Reflection. Therefore, only a static type safe call of test methods can be used. So, a test case is responsible to call the right test method. This can be done by overriding the runTest() method. Example: Define the runTest () as dispatcher method:
public void runTest () { if ("testAdd".equals (getName ()) { testAdd (); } else if ("testDivideByZero".equals (getName ()) {{ testSubtract (); } }Create a new test and run it:
Test test = new MathTest ("testAdd"); test.run ();A convenient way to do so is with an anonymous inner class.
Test test= new MathTest("add") { public void runTest() { testAdd(); } }; test.run();The tests to be run can be collected into a TestSuite. leJOSUnit 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() { TestSuite suite = new TestSuite (); suite.addTest(new MathTest("testAdd")); suite.addTest(new MathTest("testDivideByZero")); return suite; }
TestResult
,
TestSuite
Constructor Summary | |
TestCase()
No-arg constructor to enable serialization. |
|
TestCase(java.lang.String name)
Constructs a test case with the given name. |
Method Summary | |
int |
countTestCases()
Counts the number of test cases executed by run(TestResult result). |
protected TestResult |
createResult()
Creates a default TestResult object |
java.lang.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 abstract void |
runTest()
Override to run the test and assert its state. |
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. |
java.lang.String |
toString()
Returns a string representation of the test case |
Methods inherited from class lejosunit.framework.Assert |
assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertFalse, assertFalse, assertNotNull, assertNotNull, assertNotSame, assertNotSame, assertNull, assertNull, assertSame, assertSame, assertTrue, assertTrue, fail, fail, failNotEquals, failSame |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
public TestCase()
public TestCase(java.lang.String name)
name
- the name of the test has to be specified
at object creation timeMethod 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
result
- the test results to write intopublic void runBare() throws java.lang.Throwable
java.lang.Throwable
- if any exception is thrownprotected abstract void runTest() throws java.lang.Throwable
java.lang.Throwable
- if any exception is thrownprotected void setUp() throws java.lang.Exception
java.lang.Exception
- can be raised in generalprotected void tearDown() throws java.lang.Exception
java.lang.Exception
- can be raised in generalpublic java.lang.String toString()
public java.lang.String getName()
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |