We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8926d4 commit c385668Copy full SHA for c385668
Sources/XCTest/Public/XCAbstractTest.swift
@@ -53,7 +53,6 @@ open class XCTest {
53
}
54
55
/// Async setup method called before the invocation of `setUp` for each test method in the class.
56
- ///
57
@available(macOS 12.0, *)
58
open func setUp() async throws {}
59
Sources/XCTest/Public/XCTestCase.swift
@@ -35,7 +35,7 @@ open class XCTestCase: XCTest {
35
private let testClosure: XCTestCaseClosure
36
37
private var skip: XCTSkip?
38
- private let teardownBlocksState = XCTestCase.TeardownBlocksState()
+ private let teardownBlocksState = TeardownBlocksState()
39
40
/// The name of the test case, consisting of its class name and the method
41
/// name it will run.
0 commit comments