From 17b4abe2b1e925b5ed3ad73e597137da5b7acf6b Mon Sep 17 00:00:00 2001 From: tarunon Date: Fri, 22 Mar 2019 10:43:15 +0900 Subject: [PATCH] Thanks @JRG-Developer --- Sources/XCTAssertNoLeak/Front/XCTAssertNoLeak.swift | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Sources/XCTAssertNoLeak/Front/XCTAssertNoLeak.swift b/Sources/XCTAssertNoLeak/Front/XCTAssertNoLeak.swift index b824884..4e84032 100644 --- a/Sources/XCTAssertNoLeak/Front/XCTAssertNoLeak.swift +++ b/Sources/XCTAssertNoLeak/Front/XCTAssertNoLeak.swift @@ -10,6 +10,7 @@ public func XCTAssertNoLeak(file: StaticString = #file, line: UInt = #line, _ ob } /// Generates a failure asynchronously if traversed objects are leaked. +/// The closure is executed synchronously and blocks while running. /// /// - Parameters: /// - f: The closure givven memory leak test context. @@ -39,6 +40,7 @@ public func XCTAssertNoLeak(file: StaticString = #file, line: UInt = #line, _ ob } /// Generates a failure asynchronously if traversed objects are leaked. +/// The closure is executed synchronously and blocks while running. /// /// - Parameters: /// - f: The closure givven memory leak test context. @@ -69,6 +71,7 @@ public func XCTAssertNoLeak(file: StaticString = #file, line: UInt = #line, _ ob } /// Generates a failure asynchronously if traversed objects are leaked. +/// The closure is executed synchronously and blocks while running. /// /// - Parameters: /// - f: The closure givven memory leak test context.