Last active
January 8, 2024 19:42
-
-
Save lucaswkuipers/dbdaff2ddce06e05c3452bb9a94a07f9 to your computer and use it in GitHub Desktop.
XCTestCase+trackForMemoryLeak
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import XCTest | |
extension XCTestCase { | |
func assertDeallocated( | |
_ instance: AnyObject, | |
file: StaticString = #filePath, | |
line: UInt = #line | |
) { | |
addTeardownBlock { [weak instance] in | |
XCTAssertNil( | |
instance, | |
"Instance not deallocated. Potential memory leak.", | |
file: file, | |
line: line | |
) | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment