File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ public class XCTestSuite: XCTest {
65
65
setUp ( )
66
66
for test in tests {
67
67
test. run ( )
68
- testRun. addTest ( test. testRun!)
68
+ testRun. addTestRun ( test. testRun!)
69
69
}
70
70
tearDown ( )
71
71
run. stop ( )
@@ -80,4 +80,4 @@ public class XCTestSuite: XCTest {
80
80
public func addTest( _ test: XCTest ) {
81
81
tests. append ( test)
82
82
}
83
- }
83
+ }
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ public class XCTestSuiteRun: XCTestRun {
57
57
58
58
/// Add a test run to the collection of `testRuns`.
59
59
/// - Note: It is rare to call this method outside of XCTest itself.
60
- public func addTest ( _ testRun: XCTestRun ) {
60
+ public func addTestRun ( _ testRun: XCTestRun ) {
61
61
testRuns. append ( testRun)
62
62
}
63
63
You can’t perform that action at this time.
0 commit comments