Unit test template using GMock
[ptas] / tests / ut_gmocktemplate / ut_gmocktemplate.cpp
1 #include <gmock/gmock.h>
2 #include <gtest/gtest.h>
3
4 TEST(TestSuiteName, TestMethodName)
5 {
6 }
7
8 int main(int argc, char *argv[])
9 {
10     ::testing::InitGoogleMock(&argc, argv);
11     return RUN_ALL_TESTS();
12 }