Rory L.P. McGuire

Results 1 comments of Rory L.P. McGuire

Note that SwiftLint suggests changing (e.g.) `XCTAssert(self.optionalBoolean == true)` to `XCTAssertEqual(self.optionalBoolean, true)`: ``` warning: XCTest Specific Matcher Violation: Prefer the specific matcher 'XCTAssertEqual' instead (xct_specific_matcher) ``` And once you do,...