| 50 | using namespace ClangTidy; |
| 51 | |
| 52 | void ReplacementsParserTester::initTestCase() |
| 53 | { |
| 54 | // Called before the first testfunction is executed |
| 55 | AutoTestShell::init({ "kdevclangtidy" }); |
| 56 | TestCore::initialize(Core::NoUi); |
| 57 | |
| 58 | m_pluginFilePaths = prepareTestFiles("data/plugin.cpp", this); |
| 59 | RETURN_IF_TEST_FAILED(); |
| 60 | m_nihonPluginFilePaths = prepareTestFiles("data/nihon_plugin.cpp", this); |
| 61 | RETURN_IF_TEST_FAILED(); |
| 62 | } |
| 63 | |
| 64 | void ReplacementsParserTester::cleanupTestCase() |
| 65 | { |
nothing calls this directly
no test coverage detected