/Tests/NSArrayBlocksKitTest.h
C++ Header | 21 lines | 13 code | 4 blank | 4 comment | 0 complexity | 2f81b2bac527e012c6c3a9820c9adfbf MD5 | raw file
1// 2// NSArrayBlocksKitTest.h 3// BlocksKit Unit Tests 4// 5 6#import <GHUnitIOS/GHUnit.h> 7#import "BlocksKit/BlocksKit.h" 8 9@interface NSArrayBlocksKitTest : GHTestCase 10 11- (void)testEach; 12- (void)testMatch; 13- (void)testNotMatch; 14- (void)testSelect; 15- (void)testSelectedNone; 16- (void)testReject; 17- (void)testRejectedAll; 18- (void)testMap; 19- (void)testReduceWithBlock; 20 21@end