12 lines
180 B
C++
12 lines
180 B
C++
|
#define CATCH_CONFIG_RUNNER
|
||
|
#include "catch2.h"
|
||
|
|
||
|
int main(int argc, char* argv[])
|
||
|
{
|
||
|
#ifdef _WIN32
|
||
|
SetConsoleOutputCP(65001);
|
||
|
#endif
|
||
|
|
||
|
return Catch::Session().run(argc, argv);
|
||
|
}
|