KWAfterEachNode.h 362 B

1234567891011121314151617
  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 "KWBlockNode.h"
  8. #import "KWExampleNode.h"
  9. @interface KWAfterEachNode : KWBlockNode<KWExampleNode>
  10. #pragma mark - Initializing
  11. + (id)afterEachNodeWithCallSite:(KWCallSite *)aCallSite block:(void (^)(void))block;
  12. @end