| 162 | } |
| 163 | |
| 164 | BasicTestingSetup::~BasicTestingSetup() |
| 165 | { |
| 166 | ClearGlobalAssetDir(); |
| 167 | SetMockTime(0s); // Reset mocktime for following tests |
| 168 | LogInstance().DisconnectTestLogger(); |
| 169 | fs::remove_all(m_path_root); |
| 170 | gArgs.ClearArgs(); |
| 171 | ECC_Stop(); |
| 172 | } |
| 173 | |
| 174 | ChainTestingSetup::ChainTestingSetup(const std::string& chainName, const std::string& fedpegscript, const std::vector<const char*>& extra_args) |
| 175 | : BasicTestingSetup(chainName, fedpegscript, extra_args) |
nothing calls this directly
no test coverage detected