2024-01-12 10:53:56 -08:00
|
|
|
// Copyright (c) FIRST and other WPILib contributors.
|
|
|
|
|
// 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.
|
|
|
|
|
|
2026-06-23 08:35:48 -07:00
|
|
|
#include <catch2/catch_session.hpp>
|
|
|
|
|
#include <catch2/catch_test_macros.hpp>
|
|
|
|
|
|
|
|
|
|
TEST_CASE("xrpVendordep native test binary loads", "[xrp][vendordep][smoke]") {}
|
2024-01-12 10:53:56 -08:00
|
|
|
|
|
|
|
|
int main(int argc, char** argv) {
|
2026-06-23 08:35:48 -07:00
|
|
|
return Catch::Session().run(argc, argv);
|
2024-01-12 10:53:56 -08:00
|
|
|
}
|