summaryrefslogtreecommitdiff
path: root/platform/darwin/test/MGLTestAssertionHandler.h
diff options
context:
space:
mode:
Diffstat (limited to 'platform/darwin/test/MGLTestAssertionHandler.h')
-rw-r--r--platform/darwin/test/MGLTestAssertionHandler.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/platform/darwin/test/MGLTestAssertionHandler.h b/platform/darwin/test/MGLTestAssertionHandler.h
deleted file mode 100644
index f1aa39921e..0000000000
--- a/platform/darwin/test/MGLTestAssertionHandler.h
+++ /dev/null
@@ -1,18 +0,0 @@
-#import <Foundation/Foundation.h>
-#import <XCTest/XCTest.h>
-
-NS_ASSUME_NONNULL_BEGIN
-
-// Use to catch or log assertions that occur in dispatch blocks, timers or
-// other asynchronous operations.
-@interface MGLTestAssertionHandler : NSAssertionHandler
-
-- (instancetype)initWithTestCase:(XCTestCase *)testCase;
-@property (nonatomic, weak) XCTestCase *testCase;
-
-// If YES, use `_XCTPreformattedFailureHandler` to "fail" the test,
-// otherwise log the assert.
-@property (nonatomic) BOOL shouldFail;
-@end
-
-NS_ASSUME_NONNULL_END