17 lines
269 B
Objective-C
17 lines
269 B
Objective-C
@import Foundation;
|
|
#import "Infrastructure.h"
|
|
|
|
@implementation XCTestCase (PMKUnhandledErrorHandler)
|
|
|
|
+ (void)initialize {
|
|
[Injected setUp];
|
|
}
|
|
|
|
- (void)setUp {
|
|
Injected.errorUnhandler = ^(id err) {
|
|
XCTFail("Unexpected unhandled error");
|
|
};
|
|
}
|
|
|
|
@end
|