Xcode 10和super.tearDown

时间:2018-11-23 14:30:28

标签: xcode xctest teardown

从Xcode 10.1(也许是10)开始,当我创建单元测试文件时,我没有调用super.tearDown()和super.setUp()。

我没有在发行说明中看到这种变化。

文档https://developer.apple.com/documentation/xctest/xctestcase/understanding_setup_and_teardown_for_test_methods中的内容仍在此处。

所以我的问题还是应该编写super.tearDown()和super.setUp()吗?

class SomethingTests: XCTestCase {  

    override func setUp() {  
        // Put setup code here. This method is called before the invocation of each test method in the class.  
    }  

    override func tearDown() {  
        // Put teardown code here. This method is called after the invocation of each test method in the class.  
    }  

    func testExample() {  
        // This is an example of a functional test case.  
        // Use XCTAssert and related functions to verify your tests produce the correct results.  
    }  

    func testPerformanceExample() {  
        // This is an example of a performance test case.  
        self.measure {  
            // Put the code you want to measure the time of here.  
        }  
    }  
}  

1 个答案:

答案 0 :(得分:6)

对于XCTestCase的直接子类,从未调用super.setUp()不会改变任何行为。这是因为setUptearDown是模板方法,其顶层实现为空。

尽管行为没有改变,但是省略对super的调用意味着如果您创建一个具有多个级别的测试层次结构,则必须将其重新添加。

您什么时候可以拥有多个级别?有两种情况:

  • 要在不同情况下重复使用相同的测试。
  • 当您将XCTestCase子类化以创建自定义帮助程序时。

这些不是每天都会发生。但是它们确实发生了。确定“我在这里需要它,但在那儿不需要它”是危险的。所以我会一直打super