2021-01-21 22:47:56 +08:00
|
|
|
#include <gtest/gtest.h>
|
|
|
|
#include <utils/logging.hpp>
|
|
|
|
|
|
|
|
int main(int argc, char **argv) {
|
|
|
|
::testing::InitGoogleTest(&argc, argv);
|
|
|
|
logging::RedirectToStderr();
|
2021-05-14 21:38:59 +08:00
|
|
|
spdlog::set_level(spdlog::level::warn);
|
2021-01-21 22:47:56 +08:00
|
|
|
return RUN_ALL_TESTS();
|
|
|
|
}
|