| 22 | |
| 23 | |
| 24 | int main(int argc, char **argv) { |
| 25 | comm::LogFunc log_func; |
| 26 | plugin::LoggerGoogle::GetLogger("test_config", "/tmp/phxqueue/log", 3, log_func); |
| 27 | comm::Logger::GetInstance()->SetLogFunc(log_func); |
| 28 | |
| 29 | config::GlobalConfig global_config; |
| 30 | assert(comm::RetCode::RET_OK == global_config.Load()); |
| 31 | test::TestConfig::TestGlobalConfig(&global_config); |
| 32 | |
| 33 | return 0; |
| 34 | } |
| 35 |
nothing calls this directly
no test coverage detected