Package atunit

Class Summary
AtUnit This is the JUnit test runner used for AtUnit tests.
 

Enum Summary
Container.Option  
MockFramework.Option  
 

Exception Summary
NoUnitException Thrown when the test has no field annotated with Unit.
TooManyUnitsException Thrown when a test has more than one field annotated with Unit.
 

Annotation Types Summary
Container Tells AtUnit to use a supported dependency injection (inversion of control) container.
ContainerClass Specifies a Container implementation to use as the dependency injection container for the test.
Mock Fields with this annotation are populated with mock objects created using the configured framework.
MockFramework Tells AtUnit to use a supported mock objects framework.
MockFrameworkClass Specifies a MockFramework implementation to use as the mock objects framework for the test.
Stub This annotation is like Mock, except that the object provided by AtUnit is a dummy and is ignored by the mock objects framework.
Unit Indicates the subject of the test.