[romi,xrp] Translate unit tests to catch2 (#9012)

This commit is contained in:
Peter Johnson
2026-06-23 08:35:48 -07:00
committed by GitHub
parent a5c92df1f6
commit ada1191265
8 changed files with 19 additions and 12 deletions

View File

@@ -2,9 +2,11 @@
// Open Source Software; you can modify and/or share it under the terms of
// the WPILib BSD license file in the root directory of this project.
#include <gtest/gtest.h>
#include <catch2/catch_session.hpp>
#include <catch2/catch_test_macros.hpp>
TEST_CASE("xrpVendordep native test binary loads", "[xrp][vendordep][smoke]") {}
int main(int argc, char** argv) {
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
return Catch::Session().run(argc, argv);
}