I'm using the KIF test framework. Currently, I'm able to detect that a table is not empty by the following line:
tester().waitForCellAtIndexPath(NSIndexPath(forRow: 0, inSection: 0),
inTableViewWithAccessibilityIdentifier: "My Table")
However, I need to be able to test if a table is completely empty. What is the best way to accomplish this using KIF?