NSObject+KiwiMockAdditions.h 387 B

1234567891011121314151617181920212223
  1. //
  2. // Licensed under the terms in License.txt
  3. //
  4. // Copyright 2010 Allen Ding. All rights reserved.
  5. //
  6. #import "KiwiConfiguration.h"
  7. @protocol KiwiMockAdditions <NSObject>
  8. #pragma mark - Creating Mocks
  9. + (id)mock;
  10. + (id)mockWithName:(NSString *)aName;
  11. + (id)nullMock;
  12. + (id)nullMockWithName:(NSString *)aName;
  13. @end
  14. @interface NSObject(KiwiMockAdditions) <KiwiMockAdditions>
  15. @end