org.junit.runner
Class Runner

public class Runner
A Runner runs tests and notifies a RunNotifier of significant events as it does so. You will need to subclass Runner when using @RunWith to invoke a custom runner. When creating a custom runner, in addition to implementing the abstract methods here you must also provide a constructor that takes as an argument the Class containing the tests.
SinceNot specified.
VersionNot specified.
AuthorNot specified.
Wiki javadoc Use textile entry format.
Add your comments here.
Constructor Summary
Runner()
No description provided.
Method Summary
Description getDescription()
No description provided.
void run( RunNotifier notifier )
Run the tests for this runner.
int testCount()
No description provided.
Runner
public Runner ( )
No description provided.
Wiki javadoc Use textile entry format.
Add your comments here.
getDescription
public Description getDescription ( )
No description provided.
Wiki javadoc Use textile entry format.
Add your comments here.
run
public void run ( RunNotifier notifier )
Run the tests for this runner.
Parameters
TypeNameDescription
RunNotifier notifier will be notified of events while tests are being run--tests being started, finishing, and failing
Returns void No description provided.
Wiki javadoc Use textile entry format.
Add your comments here.
testCount
public int testCount ( )
No description provided.
Wiki javadoc Use textile entry format.
Add your comments here.