A B C D E F G I L M N P R S T U

M

MethodSignature - Class in biz.xsoftware.mock
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}
MethodSignature(String) - Constructor for class biz.xsoftware.mock.MethodSignature
Creates a new instance using the given method name and creates an empty array for the method's arguments
MethodSignature(String, Class<?>...) - Constructor for class biz.xsoftware.mock.MethodSignature
Creates a new instance and clones the args given
MockLogHandler - Class in biz.xsoftware.mock
Used to aid in the testing of generated log messages.
MockLogHandler(String, Level) - Constructor for class biz.xsoftware.mock.MockLogHandler
Creates an instance of this object.
MockLogHandler(String) - Constructor for class biz.xsoftware.mock.MockLogHandler
Helper constructor that just sets the Level to FINE
MockObject - Interface in biz.xsoftware.mock
The interface all mock objects implement.
MockObjectFactory - Class in biz.xsoftware.mock
The factory class used to create MockObjects from one or many interfaces.
MockTestCase - Class in biz.xsoftware.mock.testcase
This is a special test case that does two things Verifies logs with either of the following Verifies there are no warning logs Verifies warning logs exist as they should exist For mocks created using MockTestCase.createMock, this test case will verify in teardown that no more methods were called on the mock
MockTestCase() - Constructor for class biz.xsoftware.mock.testcase.MockTestCase
 
MockTestCase(String) - Constructor for class biz.xsoftware.mock.testcase.MockTestCase
 

A B C D E F G I L M N P R S T U