Files
maddy/tests/main.cpp
2024-11-16 05:50:22 +01:00

16 lines
391 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();
}