| 22 | using namespace GammaRay; |
| 23 | |
| 24 | class SelfTestTest : public QObject |
| 25 | { |
| 26 | Q_OBJECT |
| 27 | private slots: |
| 28 | static void runSelfTest() |
| 29 | { |
| 30 | Paths::setRelativeRootPath(GAMMARAY_INVERSE_BIN_DIR); |
| 31 | SelfTest selfTest; |
| 32 | QVERIFY(selfTest.checkEverything()); |
| 33 | } |
| 34 | }; |
| 35 | |
| 36 | QTEST_MAIN(SelfTestTest) |
| 37 |
nothing calls this directly
no test coverage detected