/ src / common / UnitTests-CommonUtils / TestStubs.cpp
TestStubs.cpp
 1  #include "pch.h"
 2  #include <common/logger/logger.h>
 3  #include <common/SettingsAPI/settings_helpers.h>
 4  #include <spdlog/sinks/null_sink.h>
 5  
 6  std::shared_ptr<spdlog::logger> Logger::logger = spdlog::null_logger_mt("Common.Utils.UnitTests");
 7  
 8  namespace PTSettingsHelper
 9  {
10      std::wstring get_root_save_folder_location()
11      {
12          return L"";
13      }
14  }