Files
rippled/src/tests/libxrpl/telemetry/main.cpp
Pratik Mankawde 647cc794dc Phase 2: Add gtest telemetry tests, remove BEAST test
Migrate TelemetryConfig tests from BEAST to gtest framework in
src/tests/libxrpl/telemetry/. Add TracingMacros tests covering
macro expansion, SpanGuard RAII, move semantics, and exception
recording.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-25 23:08:29 +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();
}