Skip to content

Instantly share code, notes, and snippets.

@polac24
Last active February 23, 2019 09:45
Show Gist options
  • Save polac24/b0dc9d5d2489c625ec4fbe71cfa972c3 to your computer and use it in GitHub Desktop.
Save polac24/b0dc9d5d2489c625ec4fbe71cfa972c3 to your computer and use it in GitHub Desktop.
func testDelegateKeepsWeakReference() {
// Arrange
let sut = MasterClass()
// Act
let listener = weaklyScoped(MasterListener()) {
sut.add($0)
}
// Assert
XCTAssertNil(listener)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment