在 UITableView 中获取数字行,而单元测试- swift



我正在为具有UITableView的UIViewController编写一个测试用例。我想问我如何在UITableView中获取行数

 func testloadingDataIntoUiTableView()
    {      
      var  countRow:Int =  viewController.formListTableView.numberOfRowsInSection   
      XCTAssert(countRow == 4)  
    }

简介

请记住,数据模型会生成 UI。但是,不应查询 UI 来检索数据模型(除非我们谈论的是用户输入)。

让我们看一下这个例子

class Controller:UITableViewController {
    let animals = ["Tiger", "Leopard", "Snow Leopard", "Lion", "Mountain Lion"]
    let places = ["Maveriks", "Yosemite", "El Capitan"];
    override func numberOfSectionsInTableView(tableView: UITableView) -> Int {
        return 2
    }
    override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        switch section {
        case 0: return animals.count
        case 1: return places.count
        default: fatalError()
        }
    }
    override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
        guard let cell = tableView.dequeueReusableCellWithIdentifier("MyCellID") else { fatalError("Who took the MyCellID cell???") }
        switch indexPath.section {
        case 0: cell.textLabel?.text = animals[indexPath.row]
        case 1: cell.textLabel?.text = places[indexPath.row]
        default: fatalError()
        }
        return cell
    }
}

丑陋的解决方案

在这种情况下,要将总行数放入表中,我们应该查询模型(animalsplaces属性),因此

let controller: Controller = ...
let rows = controller.animals.count + controller.places.count

不错的解决方案

或者更好的是,我们可以将animalsplaces属性设为私有,并添加这样的计算属性

class Controller:UITableViewController {
    private let animals = ["Tiger", "Leopard", "Snow Leopard", "Lion", "Mountain Lion"]
    private let places = ["Maveriks", "Yosemite", "El Capitan"];
    var totalNumberOfRows: Int { return animals.count + places.count }
    ...

现在你可以使用它

let controller: Controller = ...
let rows = controller.totalNumberOfRows

相关内容

  • 没有找到相关文章

最新更新