| 25 | : settings(std::move(settings)) {} |
| 26 | |
| 27 | virtual void SetUp() { |
| 28 | Logger::addSink(make_shared<ErrorLogSink>()); |
| 29 | root = make_unique<Root>(settings); |
| 30 | root->configuration()->set("clearUniverseFiles", true); |
| 31 | root->configuration()->set("clearPlayerFiles", true); |
| 32 | } |
| 33 | |
| 34 | virtual void TearDown() { |
| 35 | root.reset(); |
nothing calls this directly
no test coverage detected