brintos

brintos / llvm-project-archived public Read only

0
0
Text · 391 B · 09f5ef0 Raw
12 lines · plain
1.. title:: clang-tidy - objc-assert-equals2 3objc-assert-equals4==================5 6Finds improper usages of `XCTAssertEqual` and `XCTAssertNotEqual` and replaces7them with `XCTAssertEqualObjects` or `XCTAssertNotEqualObjects`.8 9This makes tests less fragile, as many improperly rely on pointer equality for10strings that have equal values.  This assumption is not guaranteed by the11language.12