Created
September 18, 2014 12:37
-
-
Save akolov/8894408226dab48d3021 to your computer and use it in GitHub Desktop.
Revisions
-
akolov created this gist
Sep 18, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ class ExceptionTestCase: XCTestCase { func raisesException() { var exception = NSException(name: NSInternalInconsistencyException, reason: "Testing exceptions", userInfo: nil) XCTAssertThrows({ exception.raise() }, "Should raise an exception) XCTAssertThrowsSpecific({ exception.raise() }, NSInternalInconsistencyException, "Should raise NSInternalInconsistencyException") } } This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ #import "XCTestCase+Exceptions.h" This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ @import Foundation; @import XCTest; @interface XCTestCase (Exceptions) - (void)XCTAssertThrows:(void (^)(void))block :(NSString *)message; - (void)XCTAssertThrowsSpecific:(void (^)(void))block :(NSString *)name :(NSString *)message; @end This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,28 @@ #import "XCTestCase+Exceptions.h" @implementation XCTestCase (Exceptions) - (void)XCTAssertThrows:(void (^)(void))block :(NSString *)message { XCTAssertThrows(block(), @"%@", message); } - (void)XCTAssertThrowsSpecific:(void (^)(void))block :(NSString *)exceptionName :(NSString *)message { BOOL __didThrow = NO; @try { block(); } @catch (NSException *exception) { __didThrow = YES; XCTAssertEqualObjects(exception.name, exceptionName, @"%@", message); } @catch (...) { __didThrow = YES; XCTFail(@"%@", message); } if (!__didThrow) { XCTFail(@"%@", message); } } @end