| 23 | #include <ctime> |
| 24 | |
| 25 | int main(int argc, char **argv) { |
| 26 | agi::dispatch::Init([](agi::dispatch::Thunk) { }); |
| 27 | agi::util::InitLocale(); |
| 28 | |
| 29 | agi::log::log = new agi::log::LogSink; |
| 30 | agi::log::log->Subscribe(std::make_unique<agi::log::JsonEmitter>("./")); |
| 31 | ::testing::InitGoogleTest(&argc, argv); |
| 32 | |
| 33 | srand(time(nullptr)); |
| 34 | |
| 35 | int retval = RUN_ALL_TESTS(); |
| 36 | |
| 37 | delete agi::log::log; |
| 38 | |
| 39 | return retval; |
| 40 | } |
| 41 |
nothing calls this directly
no test coverage detected