| 140 | } |
| 141 | |
| 142 | void TestList::deatchTableView() |
| 143 | { |
| 144 | if (_tableView) |
| 145 | { |
| 146 | _tableView->setDataSource(nullptr); |
| 147 | _tableView->removeFromParentAndCleanup(true); |
| 148 | _tableView->release(); |
| 149 | _tableView = nullptr; |
| 150 | } |
| 151 | } |
| 152 | |
| 153 | void TestList::addTest(std::string_view testName, std::function<TestBase*()> callback) |
| 154 | { |
nothing calls this directly
no test coverage detected