Files
SpacetimeDB/crates/bindings-cpp/tests/main.cpp
2026-03-18 10:22:30 -07:00

13 lines
322 B
C++

#include <iostream>
#include <string_view>
int RunModuleLibraryUnitTests();
int main(int argc, char** argv) {
const int result = RunModuleLibraryUnitTests();
if (result == 0 && argc > 1 && std::string_view(argv[1]) == "-v") {
std::cout << "Module library unit tests passed\n";
}
return result;
}