Branch data Line data Source code
1 : : /* 2 : : * ----------------- BEGIN LICENSE BLOCK --------------------------------- 3 : : * 4 : : * Copyright (C) 2019-2021 Intel Corporation 5 : : * 6 : : * SPDX-License-Identifier: LGPL-2.1-only 7 : : * 8 : : * ----------------- END LICENSE BLOCK ----------------------------------- 9 : : */ 10 : : 11 : : #include "gtest/gtest.h" 12 : : #include <ad/rss/core/Logging.hpp> 13 : : #include "spdlog/spdlog.h" 14 : : 15 : 1 : int main(int argc, char **argv) 16 : : { 17 [ + - ]: 1 : ad::rss::core::getLogger()->set_level(spdlog::level::off); 18 [ + - ]: 1 : spdlog::set_default_logger(ad::rss::core::getLogger()); 19 : 1 : ::testing::InitGoogleTest(&argc, argv); 20 : 1 : return RUN_ALL_TESTS(); 21 : : }