| 124 | } |
| 125 | |
| 126 | void TestTestController::removeSuite() |
| 127 | { |
| 128 | FakeTestSuite suite(TestSuiteName, m_project); |
| 129 | m_testController->addTestSuite(&suite); |
| 130 | |
| 131 | QVERIFY(m_testController->findTestSuite(m_project, TestSuiteName)); |
| 132 | m_testController->removeTestSuite(&suite); |
| 133 | |
| 134 | QCOMPARE(m_testController->findTestSuite(m_project, TestSuiteName), (ITestSuite*)nullptr); |
| 135 | QVERIFY(m_testController->testSuites().isEmpty()); |
| 136 | } |
| 137 | |
| 138 | void TestTestController::replaceSuite() |
| 139 | { |
nothing calls this directly
no test coverage detected