mirror of
https://github.com/clockworklabs/SpacetimeDB.git
synced 2026-05-08 08:39:58 -04:00
13 lines
322 B
C++
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;
|
|
}
|