SimpleInvoker
public class SimpleInvoker
Constructor Summary | |
---|---|
SimpleInvoker(SimpleTestCase test_case) Stashes the test case for later. |
Method Summary | |
---|---|
SimpleTestCase | Accessor for test case being run. |
void | invoke(string method) Invokes a test method and buffered with setUp() and tearDown() calls. |
public SimpleInvoker(SimpleTestCase test_case)
Stashes the test case for later.
public SimpleTestCase getTestCase()
Accessor for test case being run.
public void invoke(string method)
Invokes a test method and buffered with setUp() and tearDown() calls.
This is called by the class runner to run a single test method. Will also run the setUp() and tearDown() methods.