Created
September 10, 2016 22:03
-
-
Save lizixroy/d3c35eac4eebc3b435d16fcd083d8511 to your computer and use it in GitHub Desktop.
example for an article
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 characters
extension XCTestCase { | |
func g<T>(array: [T], at index: Int, file: StaticString = #file, line: UInt = #line) -> T { | |
continueAfterFailure = false | |
guard index < array.count else { | |
XCTFail("index out of range", file: file, line: line) | |
precondition(false) | |
} | |
return array[index] | |
} | |
func uw<T>(variable: T?, file: StaticString = #file, line: UInt = #line) -> T { | |
continueAfterFailure = false | |
guard let variable = variable else { | |
XCTFail("unexpectedly found nil while unwrapping an Optional value", file: file, line: line) | |
precondition(false) | |
} | |
return variable | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment