// License: Modified MIT (NON-AI) // See the LICENSE file in the root directory for license information. // Copyright 2025 Timothy Prepscius #define CATCH_CONFIG_RUNNER #include #include using namespace tjp; using namespace core; int main( int argc, char* argv[] ) { xLogInitialize("Core_IO_Tests.txt"); xLogActivateStory("testing"); xLogActivateStory("debug"); int result = Catch::Session().run( argc, argv ); return result; }