Uses of Class
biz.xsoftware.mock.CalledMethod

Packages that use CalledMethod
biz.xsoftware.mock The only package of MockObject which contains the classes to create(or allow the creation of) mock objects from interfaces. 
 

Uses of CalledMethod in biz.xsoftware.mock
 

Methods in biz.xsoftware.mock that return CalledMethod
 CalledMethod[] MockObject.expect(String... methods)
          Waits for all the methods to be called.
 CalledMethod MockObject.expect(String method)
          Waits for one and only one method to be called.
 CalledMethod[] MockObject.expect(String method, int times)
          Waits for a methods to be called a specific number of times.
 CalledMethod MockObject.expectCall(String method)
          Deprecated. Use MockObject.expect(String) now
 CalledMethod MockObject.expectCall(String method, String... ignoredMethods)
          Deprecated. Use a combination of MockObject.addIgnore(String[]) and MockObject.expect(String)
 CalledMethod[] MockObject.expectOnceThenIgnore(String... methods)
          This method will expect the given method one time and ignore any further calls to the method.
 CalledMethod[] MockObject.expectOrderedCalls(String... methods)
          Deprecated. Use MockObject.expect(String[]) instead
 CalledMethod[] MockObject.expectOrderedCalls(String[] methods, String[] ignoredMethods)
          Deprecated. This is no longer supported, the use of MockObject.addIgnore(String[]) in combination with MockObject.expect(String[]) should be used
 CalledMethod[] MockObject.expectUnordered(String... methods)
          Expects the given methods to be called in no particular order
 CalledMethod MockObject.expectUnordered(String method)
           
 CalledMethod[] MockObject.expectUnorderedCalls(String... methods)
          Deprecated. No longer supported
 CalledMethod[] MockObject.expectUnorderedCalls(String[] methods, String[] ignoredMethods)
          Deprecated. This is no longer supported, the use of MockObject.addIgnore(String[]) in combination with MockObject.expect(String[]) should be used
 CalledMethod[] ExpectFailedException.getCalledMethods()
          Gives you back the CalledMethods giving you access to the parameters that were passed in and the stack traces of how they were called.
 

Constructors in biz.xsoftware.mock with parameters of type CalledMethod
ExpectFailedException(String message, CalledMethod[] methods, String reason)
          Constructor for Expects that fail with a reason and message.