KWBeBetweenMatcher.h 423 B

123456789101112131415161718
  1. //
  2. // Licensed under the terms in License.txt
  3. //
  4. // Copyright 2010 Allen Ding. All rights reserved.
  5. //
  6. #import "KiwiConfiguration.h"
  7. #import "KWMatcher.h"
  8. @interface KWBeBetweenMatcher : KWMatcher
  9. #pragma mark - Configuring Matchers
  10. // TODO: 'and' below is a reserved word in C++
  11. - (void)beBetween:(id)aLowerEndpoint and:(id)anUpperEndpoint;
  12. - (void)beInTheIntervalFrom:(id)aLowerEndpoint to:(id)anUpperEndpoint;
  13. @end