Package | Description |
---|---|
org.junit.rules | |
org.junit.runners |
Provides standard
Runner implementations. |
Class and Description |
---|
ExpectedException
The
ExpectedException rule allows you to verify that your code
throws a specific exception. |
ExternalResource
A base class for Rules (like TemporaryFolder) that set up an external
resource before a test (a file, socket, server, database connection, etc.),
and guarantee to tear it down afterward:
|
MethodRule
A MethodRule is an alteration in how a test method is run and reported.
|
RuleChain
The RuleChain rule allows ordering of TestRules.
|
TestRule
A TestRule is an alteration in how a test method, or set of test methods,
is run and reported.
|
TestWatcher
TestWatcher is a base class for Rules that take note of the testing
action, without modifying it.
|
Timeout
The Timeout Rule applies the same timeout to all test methods in a class:
|
Timeout.Builder
Builder for
Timeout . |
Verifier
Verifier is a base class for Rules like ErrorCollector, which can turn
otherwise passing test methods into failing tests if a verification check is
failed
|
Class and Description |
---|
MethodRule
A MethodRule is an alteration in how a test method is run and reported.
|
TestRule
A TestRule is an alteration in how a test method, or set of test methods,
is run and reported.
|
Copyright © 2002–2018 JUnit. All rights reserved.