ミラー元
https://github.com/quitesimpleorg/qsmaddy.git
前回の同期 2024-11-05 09:14:38 +01:00
15 行
393 B
C++
15 行
393 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) = false;
|
||
|
::testing::InitGoogleMock(&argc, argv);
|
||
|
return RUN_ALL_TESTS();
|
||
|
}
|