func assert()

in src/iOSSnapshotTestCase/SwiftSupport.swift [73:77]


  func assert(_ assertion: Bool, message: String, file: StaticString, line: UInt) {
    if !assertion {
      XCTFail(message, file: file, line: line)
    }
  }