NSObject+KiwiSpyAdditions.h 417 B

1234567891011121314151617181920
  1. //
  2. // Licensed under the terms in License.txt
  3. //
  4. // Copyright 2010 Allen Ding. All rights reserved.
  5. //
  6. #import "KiwiConfiguration.h"
  7. @class KWCaptureSpy;
  8. @protocol KiwiSpyAdditions <NSObject>
  9. - (KWCaptureSpy *)captureArgument:(SEL)selector atIndex:(NSUInteger)index;
  10. + (KWCaptureSpy *)captureArgument:(SEL)selector atIndex:(NSUInteger)index;
  11. @end
  12. @interface NSObject (KiwiSpyAdditions) <KiwiSpyAdditions>
  13. @end