Files
rippled/src/tests/libxrpl/ledger/main.cpp
Valentin Balaschenko 24fbfc0700 move to gtest
2026-02-04 12:37:55 +00:00

9 lines
134 B
C++

#include <gtest/gtest.h>
int
main(int argc, char** argv)
{
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}