See: Description
Interface | Description |
---|---|
UnitTest |
A Codename One unit test interface, you would normally like to derive from
AbstractTest which is less verbose and contains many helper methods.
|
Class | Description |
---|---|
AbstractTest |
A unit test class that simplifies the process of writing test cases
for Codename One.
|
DeviceRunner |
Runs the test cases from the test build of the app, notice that this class
is abstract since device/app specific code can exist in the implementation
|
JUnitXMLReporting |
Produces test reporting in the format of JUnit XML for compatibility with
tools that consume JUnit test case results see http://code.google.com/p/codenameone/issues/detail?id=446
for more details.
|
TestReporting |
Test reports can be overriden to provide custom test reporting options
you can replace the test reporter on the device by sending the build
argument build.testReporter='com.x.MyTestReporterClass'.
|
TestRunnerComponent |
A UI component for running unit tests and displaying the results.
|
TestUtils |
Various utility classes to automate UI testing
|
This package contains everything necessary for unit tests, automation of tests and everything in between.