summaryrefslogtreecommitdiff
path: root/src/components/test_main.cc
blob: a0aee7614d7f88cc346d1c4ea41e51da2be0adb5 (plain)
1
2
3
4
5
6
7
8
9
10
#include "gmock/gmock.h"
#include "utils/logger.h"

int main(int argc, char** argv) {
   testing::InitGoogleMock(&argc, argv);
   const int result = RUN_ALL_TESTS();
   DEINIT_LOGGER();
   return result;
}