Skip to content

Instantly share code, notes, and snippets.

View adam-fowler's full-sized avatar

Adam Fowler adam-fowler

View GitHub Profile
@ptoffy
ptoffy / XCTAssert(Not)Nil
Last active April 2, 2025 10:01
Swift Testing Migration Utilities
replace: XCTAssertNil\((.*)\)
with: #expect($1 == nil)
replace: XCTAssertNotNil\((.*)\)
with: #expect($1 != nil)