mirror of
https://github.com/XRPLF/rippled.git
synced 2026-02-28 01:32:31 +00:00
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>
9 lines
134 B
C++
9 lines
134 B
C++
#include <gtest/gtest.h>
|
|
|
|
int
|
|
main(int argc, char** argv)
|
|
{
|
|
::testing::InitGoogleTest(&argc, argv);
|
|
return RUN_ALL_TESTS();
|
|
}
|