Uses of Interface
j2meunit.framework.Test

Packages that use Test
com.livescribe.penunit.framework   
j2meunit.framework   
j2meunit.textui   
 

Uses of Test in com.livescribe.penunit.framework
 

Classes in com.livescribe.penunit.framework that implement Test
 class PenletTestCase
          PenletTestCase is an extension of TestCase that provides access to an initialized Penlet.
 

Uses of Test in j2meunit.framework
 

Classes in j2meunit.framework that implement Test
 class TestCase
          A test case defines the fixture to run multiple tests.
 class TestSuite
          A TestSuite is a collection of Test instances which can be run together.
 

Fields in j2meunit.framework declared as Test
protected  Test TestFailure.fFailedTest
           
 

Methods in j2meunit.framework that return Test
 Test TestFailure.failedTest()
          Gets the failed test.
 Test TestCase.suite()
          This method should be overridden if a test case contains multiple test methods.
 Test TestSuite.testAt(int index)
          Returns the test at the given index.
 

Methods in j2meunit.framework with parameters of type Test
 void TestResult.addError(Test test, java.lang.Throwable t)
          Adds an error to the list of errors.
 void TestListener.addError(Test test, java.lang.Throwable t)
          An error occurred.
 void TestResult.addFailure(Test test, AssertionFailedError t)
          Adds a failure to the list of failures.
 void TestListener.addFailure(Test test, AssertionFailedError e)
          A failure occurred.
 void TestSuite.addTest(Test test)
          Adds a test to the suite.
 void TestResult.endTest(Test test)
          Informs the result that a test was completed.
 void TestListener.endTest(Test test)
          A test ended.
 void TestResult.endTestStep(Test test)
          Informs the result that a test was completed.
 void TestListener.endTestStep(Test test)
          A test step ended.
 void TestResult.runProtected(Test test, Protectable p)
          Runs a TestCase.
 void TestResult.startTest(Test test)
          Informs the result that a test will be started.
 void TestListener.startTest(Test test)
          A test started.
 

Constructors in j2meunit.framework with parameters of type Test
TestFailure(Test failedTest, java.lang.Throwable thrownException)
          Constructs a TestFailure with the given test and exception.
TestSuite(Test rTest)
          To create a test suite initialized with a single test.
TestSuite(Test[] rTests)
          To create a test suite initialized with multiple tests.
 

Uses of Test in j2meunit.textui
 

Methods in j2meunit.textui with parameters of type Test
 void TestRunner.addError(Test test, java.lang.Throwable t)
          DOCUMENT ME!
 void TestRunner.addFailure(Test test, AssertionFailedError e)
          DOCUMENT ME!
protected  void TestRunner.doRun(Test suite)
          DOCUMENT ME!
 void TestRunner.endTest(Test test)
          DOCUMENT ME!
 void TestRunner.endTestStep(Test test)
          TestListener.endTestStep()
static void TestRunner.run(Test suite)
          Runs a single test and collects its results.
 void TestRunner.startTest(Test test)
          DOCUMENT ME!