This commit is contained in:
2025-11-16 17:27:53 -08:00
commit 8e1842d412
9 changed files with 93 additions and 0 deletions

2
test/CMakeLists.txt Normal file
View File

@@ -0,0 +1,2 @@
add_executable(tests tests.cpp)
target_link_libraries(tests PRIVATE edbg::libedbg Catch2::Catch2WithMain)

5
test/tests.cpp Normal file
View File

@@ -0,0 +1,5 @@
#include <catch2/catch_test_macros.hpp>
TEST_CASE("validate environment") {
REQUIRE(true);
}