EXPMatcher.h 393 B

1234567891011121314151617181920
  1. //
  2. // EXPMatcher.h
  3. // Expecta
  4. //
  5. // Created by Luke Redpath on 26/03/2012.
  6. // Copyright (c) 2012 Peter Jihoon Kim. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @protocol EXPMatcher <NSObject>
  10. - (BOOL)matches:(id)actual;
  11. @optional
  12. - (BOOL)meetsPrerequesiteFor:(id)actual;
  13. - (NSString *)failureMessageForTo:(id)actual;
  14. - (NSString *)failureMessageForNotTo:(id)actual;
  15. @end