I have the following delegate and I need to test that tableView.beginUpdates() got called. I'm using XCTest and Swift 3. Do you have any ideas or sample code?
extension SomeListController: NSFetchedResultsControllerDelegate {
func controllerWillChangeContent(_ controller: NSFetchedResultsController<NSFetchRequestResult>) {
tableView.beginUpdates()
}
func controllerDidChangeContent(_ controller: NSFetchedResultsController<NSFetchRequestResult>) {
tableView.endUpdates()
}
}
I actually figured it out eventually. The endsUpdates test is pretty much the same pattern.