Skip to content

Commit d9ec97b

Browse files
committed
Respond to feedback on doc changes
1 parent 78ae7d1 commit d9ec97b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Sources/XCTest/XCTestSuite.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@
1010
// XCTestSuite.swift
1111
// A collection of test cases.
1212
//
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:
1616
//
1717
// let suite = XCTestSuite(name: "My Tests")
1818
// suite.addTest(myTest)
1919
// suite.testCaseCount // 1
20-
// suite.perform(myRunner)
20+
// suite.run()
2121

2222
public class XCTestSuite: XCTest {
2323
public private(set) var tests = [XCTest]()

0 commit comments

Comments
 (0)