使用 CocoaPods 安装
target :MyAppTests, :exclusive => true do
pod 'MXGSynchronizeTest'
end
#import <MXGSynchronizeTest/XCTest+MXGSynchronizeTest.h>
[XCTest mxg_synchronizeTest:^(BOOL *finished) {
[MXGSomeService loadDataWithCompletion:^(id someObject, NSError *error) {
XCTAssertNil(error, @"Error should be nil");
XCTAssertNotNil(someObject, @"Response object should not be nil");
*finished = YES;
}];
}];