File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 10
10
// XCTestSuite.swift
11
11
// A collection of test cases.
12
12
//
13
- // A concrete subclass of XCTest, XCTestSuite is a collection of test cases.
14
- // Suites are usually managed by the IDE, but XCTestSuite can also be
15
- // instantiated and manipulated directly:
13
+ // A subclass of XCTest, XCTestSuite is a collection of test cases. Based on
14
+ // what's passed into XCTMain(), a hierarchy of suites is built up, but
15
+ // XCTestSuite can also be instantiated and manipulated directly:
16
16
//
17
17
// let suite = XCTestSuite(name: "My Tests")
18
18
// suite.addTest(myTest)
19
19
// suite.testCaseCount // 1
20
- // suite.perform(myRunner )
20
+ // suite.run( )
21
21
22
22
public class XCTestSuite : XCTest {
23
23
public private( set) var tests = [ XCTest] ( )
You can’t perform that action at this time.
0 commit comments