KWNilMatcher.h 427 B

1234567891011121314151617181920212223
  1. //
  2. // KWBeNilMatcher.h
  3. // iOSFalconCore
  4. //
  5. // Created by Luke Redpath on 14/01/2011.
  6. // Copyright 2011 LJR Software Limited. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "KWMatcher.h"
  10. @interface KWNilMatcher : KWMatcher
  11. - (void)beNil;
  12. - (void)beNonNil;
  13. - (void)beNil:(BOOL)workaroundArgument;
  14. - (void)beNonNil:(BOOL)workaroundArgument;
  15. + (BOOL)verifyNilSubject;
  16. + (BOOL)verifyNonNilSubject;
  17. @end