| org.netbeans.junit.NbTestSuite org.netbeans.junit.MultiTestSuite
All known Subclasses: org.netbeans.junit.ParametricTestSuite,
MultiTestSuite | abstract public class MultiTestSuite extends NbTestSuite (Code) | | author: Alexander Pepin |
Method Summary | |
public void | cleanup() The method is called after executing tests. | abstract protected MultiTestCase | nextTestCase() Factory method returns a new instance of a testcases. | public void | prepare() The method is called before executing tests. | public void | run(TestResult result) Runs the tests and collects their result in a TestResult. | protected void | runAllTests(TestResult result) Creates all testcases and runs them. |
MultiTestSuite | public MultiTestSuite()(Code) | | Creates a new instance of MultiTestSuite
|
MultiTestSuite | public MultiTestSuite(String name)(Code) | | Constructs a MultiTestSuite with the given name.
|
cleanup | public void cleanup()(Code) | | The method is called after executing tests.
Can be overridden to perform closing actions.
|
nextTestCase | abstract protected MultiTestCase nextTestCase()(Code) | | Factory method returns a new instance of a testcases.
Should return null if there are no more testcases to be executed.
|
prepare | public void prepare()(Code) | | The method is called before executing tests.
Can be overridden to perform preliminary actions.
|
run | public void run(TestResult result)(Code) | | Runs the tests and collects their result in a TestResult.
|
runAllTests | protected void runAllTests(TestResult result)(Code) | | Creates all testcases and runs them.
|
|
|