qsmaddy/tests/main.cpp

15 行
392 B
C++

2017-12-25 12:22:35 +01:00
/*
* 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) {
2017-12-26 11:42:57 +01:00
::testing::GTEST_FLAG(throw_on_failure) = true;
2017-12-25 12:22:35 +01:00
::testing::InitGoogleMock(&argc, argv);
return RUN_ALL_TESTS();
}