added watchOS unit test lane to make cocoapods linter happy

This commit is contained in:
John Estropia
2022-09-12 13:56:47 +09:00
parent 159448b36d
commit a5936c1120
4 changed files with 204 additions and 21 deletions

View File

@@ -426,9 +426,9 @@ final class TransactionTests: BaseTestCase {
["indexPath", "object"]
)
let indexPath = userInfo?["indexPath"] as? NSIndexPath
XCTAssertEqual(indexPath?.index(atPosition: 0), 0)
XCTAssertEqual(indexPath?.index(atPosition: 1), 0)
let indexPath = userInfo?["indexPath"] as? IndexPath
XCTAssertEqual(indexPath?.section, 0)
XCTAssertEqual(indexPath?.row, 0)
let object = userInfo?["object"] as? TestEntity1
XCTAssertEqual(object?.testBoolean, NSNumber(value: true))