Created
November 1, 2022 03:17
-
-
Save cjnevin/f7a7cbe688f9eb8aa6e3b3ee91dcdd48 to your computer and use it in GitHub Desktop.
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 Assert where T: Equatable { | |
| func equal(to other: T, file: StaticString = #file, line: UInt = #line) { | |
| XCTAssertEqual(value, other, file: file, line: line) | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment