| 73 | } // End: anonymous namespace |
| 74 | |
| 75 | cmTestGenerator::cmTestGenerator( |
| 76 | cmTest* test, std::vector<std::string> const& configurations) |
| 77 | : cmScriptGenerator("CTEST_CONFIGURATION_TYPE", configurations) |
| 78 | , Test(test) |
| 79 | { |
| 80 | this->ActionsPerConfig = !test->GetOldStyle(); |
| 81 | this->TestGenerated = false; |
| 82 | this->LG = nullptr; |
| 83 | } |
| 84 | |
| 85 | cmTestGenerator::~cmTestGenerator() = default; |
| 86 |
nothing calls this directly
no test coverage detected