| 
 | |||||||||
| PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES | ||||||||
See:
          Description
| Class Summary | |
|---|---|
| Assert | A set of assertion methods useful for writing tests. | 
| Assume | A set of methods useful for stating assumptions about the conditions in which a test is meaningful. | 
| Test.None | Default empty exception | 
| Exception Summary | |
|---|---|
| AssumptionViolatedException | An exception class used to implement assumptions (state in which a given test is meaningful and should or should not be executed). | 
| Error Summary | |
|---|---|
| ComparisonFailure | Thrown when an assertEquals(String, String)fails. | 
| Annotation Types Summary | |
|---|---|
| After | If you allocate external resources in a Beforemethod you need to release them
 after the test runs. | 
| AfterClass | If you allocate expensive external resources in a BeforeClassmethod you need to release them
 after all the tests in the class have run. | 
| Before | When writing tests, it is common to find that several tests need similar objects created before they can run. | 
| BeforeClass | Sometimes several tests need to share computationally expensive setup (like logging into a database). | 
| ClassRule | Annotates static fields that reference rules or methods that return them. | 
| FixMethodOrder | This class allows the user to choose the order of execution of the methods within a test class. | 
| Ignore | Sometimes you want to temporarily disable a test or a group of tests. | 
| Rule | Annotates fields that reference rules or methods that return a rule. | 
| Test | The Testannotation tells JUnit that thepublic voidmethod
 to which it is attached can be run as a test case. | 
Provides JUnit core classes and annotations. Corresponds to junit.framework in Junit 3.x.
| 
 | |||||||||
| PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES | ||||||||