KiwiBlockMacros.h 333 B

12345678910111213141516
  1. //
  2. // KiwiBlockMacros.h
  3. // Kiwi
  4. //
  5. // Created by Luke Redpath on 11/07/2011.
  6. // Copyright 2011 Allen Ding. All rights reserved.
  7. //
  8. // user defined matchers
  9. #define registerMatcher(name) \
  10. \
  11. @interface NSObject (KWUserDefinedMatchersDefinitions) \
  12. - (void)name; \
  13. @end \
  14. #define defineMatcher(...) KWDefineMatchers(__VA_ARGS__)