21 lines
397 B
C++
21 lines
397 B
C++
// TJP COPYRIGHT HEADER
|
|
|
|
#define CATCH_CONFIG_RUNNER
|
|
#include <tjp/core/testing/catch.hpp>
|
|
|
|
#include <tjp/core/log/Log.h>
|
|
|
|
using namespace tjp;
|
|
using namespace core;
|
|
|
|
int main( int argc, char* argv[] )
|
|
{
|
|
// xLogInitialize("Core_Variant_Tests.txt");
|
|
xLogInitialize();
|
|
xLogActivateStory("testing");
|
|
xLogActivateStory("debug");
|
|
|
|
int result = Catch::Session().run( argc, argv );
|
|
return result;
|
|
}
|