refactor: + xo-stringtable2 w/ DString impl
This commit is contained in:
parent
f8e534f4f6
commit
5fc59b0df4
25 changed files with 1709 additions and 0 deletions
24
utest/stringtable2_utest_main.cpp
Normal file
24
utest/stringtable2_utest_main.cpp
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
/* file stringtable2_utest_main.cpp */
|
||||
|
||||
#include <xo/subsys/Subsystem.hpp>
|
||||
|
||||
#define CATCH_CONFIG_RUNNER
|
||||
#include "catch2/catch.hpp"
|
||||
|
||||
int
|
||||
main(int argc, char* argv[])
|
||||
{
|
||||
using xo::Subsystem;
|
||||
|
||||
// Your custom initialization code here
|
||||
Subsystem::initialize_all();
|
||||
|
||||
// Run Catch2's test session
|
||||
int result = Catch::Session().run(argc, argv);
|
||||
|
||||
// cleanup here, if any
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
/* end stringtable2_utest_main.cpp */
|
||||
Loading…
Add table
Add a link
Reference in a new issue