18 lines
383 B
C++
18 lines
383 B
C++
// gtest.cpp : Defines the entry point for the console application.
|
|
//V1.7.0
|
|
|
|
#include <gtest/gtest.h>
|
|
//#include <gmock/gmock.h>
|
|
//using ::testing::AtLeast;
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
#ifdef __COVERAGESCANNER__
|
|
__coveragescanner_install(argv[0]);
|
|
#endif
|
|
// testing::InitGoogleMock(&argc, argv);
|
|
testing::InitGoogleTest(&argc, argv);
|
|
return RUN_ALL_TESTS();
|
|
}
|
|
|