blob: 4bb64c8cb389c278681bb6a7a568649b5fdcfd59 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// Main loop of test program
#include "gmock/gmock.h"
#include "gtest/gtest.h"
int main(int argc, char* argv[]) {
::testing::InitGoogleMock(&argc, argv);
return RUN_ALL_TESTS();
}
|