Package biz.xsoftware.mock

The only package of MockObject which contains the classes to create(or allow the creation of) mock objects from interfaces.

See:
          Description

Interface Summary
Behavior A way of providing snippets of code to be run when a method is called.
CloningBehavior The same exact thing as the Behavior method except a cloning method must be supplied to.
MockObject The interface all mock objects implement.
 

Class Summary
CalledMethod This object contains information about a MockObject method when it is called
MethodSignature This class represents class method and it's arguments So, for example if you have the following method: public void foo(String arg0, String arg1) This object will contain the name, "foo" and the arguments in an array, {String, String}
MockLogHandler Used to aid in the testing of generated log messages.
MockObjectFactory The factory class used to create MockObjects from one or many interfaces.
 

Exception Summary
ExpectFailedException This Exception is thrown when something is expected to happen and doesn't.
 

Annotation Types Summary
BehaviorMethod This annotation is used to annotate a method inside a Behavior class as implementing an interface method in the MockObject.
 

Package biz.xsoftware.mock Description

The only package of MockObject which contains the classes to create(or allow the creation of) mock objects from interfaces.