gpt4 book ai didi

ios - cellForRowAtIndexPath 单元测试崩溃

转载 作者:行者123 更新时间:2023-11-28 06:07:18 25 4
gpt4 key购买 nike

我有一个包含一些行的简单表格 View 。每行都是一个带有 xib 文件的自定义单元格。当我运行应用程序时,我已经实现了委托(delegate)和数据源并且它工作正常。这就是我实现它的方式。

class P: UITableViewController {
override func viewDidLoad() {
super.viewDidLoad()
registerCell()
}

func registerCell() {
self.tableView.register(UINib(nibName: "PCell", bundle: nil), forCellReuseIdentifier: "cell")
}

#number of rows implemented here

override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = self.tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) as! PCell
cell.titleLabel.text = "Great"
return cell
}
}

这段代码工作正常。

问题是当我尝试对 tableView 进行单元测试时遇到问题。这就是我进行单元测试的方式

class MockPController: PController {

}

class PControllerTests: XCTestCase {
let mpc = MockPController()

//THIS IS WORKING
func testNumberOfSections() {
mpc.viewDidLoad()
XCTAssertEqual(mpc.numberOfSections(in: mpc.tableView), 5)
}

func testTitleForPCells() {
mpc.viewDidLoad()
var cell = mpc.tableView(mpc.tableView, cellForRowAt: IndexPath(row: 0, section: 1)) as! PCell
//THE APP CRASHES AT THE CELLFORROWATINDEXPATH FUNCTION IN ACTUAL CODE - HERE "let cell = self.tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) as! PCell"
//APP CRASHES HERE SAYING "Could not cast value of type 'Project.PCell' to 'ProjectTests.PCell'
}
}

在遇到这个应用程序崩溃时,我在 MockPController 中为 registerCell() 添加了一个覆盖函数,因此新的 MockPController 变成了

class MockPController: PController {
override func registerCell() {
self.tableView.register(PCell.self, forCellReuseIdentifier: "cell")
}
}

添加此覆盖函数后,我没有在 dequeueReusableCell 处崩溃,但现在应用程序崩溃,提示导出变量 titleLabel 为 nil。

所以我猜它没有得到正确的单元格实例,因为覆盖了 registerCell() 函数。但如果没有它,应用程序也会崩溃。

我做错了什么?

我搜索了谷歌,但没有得到任何结果。

最佳答案

您似乎在尝试测试 UITableViewcellForRowAt: 方法。这不是你想要的。您想要测试您的 PCell 类。为此,使用父类(super class) init init(style:reuseIdentifier:) 实例化一个 PCell。然后调用您自己的方法,如 pcell.doSomethingThatSetTheTitle() 并断言您的单元格标题是您所期望的。

编辑:

func testTitleForPCells() {
let cell = PCell(style: .default, reuseIdentifier: "anything")
let model = Model(title: "FOO")
cell.setMyModel(model)
XCTAssertEqual(cell.titleLabel.text, model.title)
}

关于ios - cellForRowAtIndexPath 单元测试崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47836329/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com