2025-07-15 15:10:25 +03:30
|
|
|
#include <test/test.hpp>
|
|
|
|
|
|
|
|
auto main() -> int32_t
|
|
|
|
try
|
|
|
|
{
|
|
|
|
using namespace ::lt::test;
|
|
|
|
using namespace ::lt::test::details;
|
|
|
|
|
2025-07-16 12:44:58 +03:30
|
|
|
return Registry::run_all();
|
2025-07-15 15:10:25 +03:30
|
|
|
}
|
|
|
|
catch (const std::exception &exp)
|
|
|
|
{
|
|
|
|
std::cout << "Terminated after uncaught exception:\n"; // NOLINT
|
|
|
|
std::cout << "exception.what: " << exp.what();
|
|
|
|
}
|