refactor: Move integration tests from 'examples/' into 'tests/' (#5367)

This change moves `examples/example` into `tests/conan` to make it clear it is an integration test, and adjusts the `conan` CI job accordingly
This commit is contained in:
Bart
2025-03-27 10:49:09 -04:00
committed by tequ
parent 96ed68d86d
commit 6a2b5fc1c0
5 changed files with 8 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
#include <xrpl/protocol/BuildInfo.h>
#include <cstdio>
int
main(int argc, char const** argv)
{
std::printf("%s\n", ripple::BuildInfo::getVersionString().c_str());
return 0;
}