mirror of
https://github.com/XRPLF/rippled.git
synced 2026-07-30 18:40:28 +00:00
10 lines
159 B
C++
10 lines
159 B
C++
#include <gmock/gmock.h>
|
|
#include <gtest/gtest.h>
|
|
|
|
int
|
|
main(int argc, char** argv)
|
|
{
|
|
::testing::InitGoogleMock(&argc, argv);
|
|
return RUN_ALL_TESTS();
|
|
}
|