| 110 | } |
| 111 | |
| 112 | void TestTestController::addSuite() |
| 113 | { |
| 114 | FakeTestSuite suite(TestSuiteName, m_project); |
| 115 | m_testController->addTestSuite(&suite); |
| 116 | |
| 117 | ITestSuite* found = m_testController->findTestSuite(m_project, TestSuiteName); |
| 118 | |
| 119 | QVERIFY(found); |
| 120 | QCOMPARE(found->name(), QString(TestSuiteName)); |
| 121 | QCOMPARE(found->project(), m_project); |
| 122 | |
| 123 | m_testController->removeTestSuite(&suite); |
| 124 | } |
| 125 | |
| 126 | void TestTestController::removeSuite() |
| 127 | { |
nothing calls this directly
no test coverage detected