1
0
镜像自地址 https://github.com/quitesimpleorg/qsmaddy.git 已同步 2024-06-13 08:26:03 +02:00
qsmaddy/tests/main.cpp
M. Petra Baranski 91e62beaec added travis.yml
2017-12-26 11:42:57 +01:00

15 行
392 B
C++

/*
* This project is licensed under the MIT license. For more information see the
* LICENSE file.
*/
#include "gmock/gmock.h"
#include "gtest/gtest.h"
// -----------------------------------------------------------------------------
int main (int argc, char** argv) {
::testing::GTEST_FLAG(throw_on_failure) = true;
::testing::InitGoogleMock(&argc, argv);
return RUN_ALL_TESTS();
}