fix: Keep spdlog loggers valid between tests (#2614)

This commit is contained in:
Ayaz Salikhov
2025-09-15 14:47:35 +01:00
committed by GitHub
parent e996f2b7ab
commit 3f2ada3439
53 changed files with 353 additions and 204 deletions

View File

@@ -17,6 +17,7 @@
*/
//==============================================================================
#include "util/LoggerFixtures.hpp"
#include "util/TerminationHandler.hpp"
#include <gtest/gtest.h>
@@ -27,5 +28,7 @@ main(int argc, char* argv[])
util::setTerminationHandler();
testing::InitGoogleTest(&argc, argv);
LoggerFixture::init();
return RUN_ALL_TESTS();
}