Deprecated API


Contents
Deprecated Methods
biz.xsoftware.mock.MockObject.addBehavior(String, Behavior, Class...)
          Since 2007 Aug 8. Use MockObject.addBehavior(MethodSignature, Behavior) instead 
biz.xsoftware.mock.MockObject.addReturnValue(String, boolean, Object...)
          MockObject.addReturnValue(Method, Object...) was enhanced to detect if the given method returns an array. If it does then the object array passed in will be the object returned for a single method call 
biz.xsoftware.mock.MockObject.expectCall(String)
          Use MockObject.expect(String) now 
biz.xsoftware.mock.MockObject.expectCall(String, String...)
          Use a combination of MockObject.addIgnore(String[]) and MockObject.expect(String) 
biz.xsoftware.mock.MockObject.expectOrderedCalls(String...)
          Use MockObject.expect(String[]) instead 
biz.xsoftware.mock.MockObject.expectOrderedCalls(String[], String[])
          This is no longer supported, the use of MockObject.addIgnore(String[]) in combination with MockObject.expect(String[]) should be used 
biz.xsoftware.mock.MockObject.expectUnorderedCalls(String...)
          No longer supported 
biz.xsoftware.mock.MockObject.expectUnorderedCalls(String[], String[])
          This is no longer supported, the use of MockObject.addIgnore(String[]) in combination with MockObject.expect(String[]) should be used 
biz.xsoftware.mock.MockObject.setDefaultBehavior(String, Behavior, Class...)
          Since 2007 Aug 8. Use MockObject.setDefaultBehavior(MethodSignature, Behavior) instead