initial implementation

This commit is contained in:
Roland Conybeare 2023-10-18 12:06:07 -04:00
commit 1078c49269
30 changed files with 2131 additions and 0 deletions

View file

@ -0,0 +1,30 @@
/* @file ProcessReflect.test.cpp */
#include "xo/process/init_process.hpp"
#include "xo/reflect/Reflect.hpp"
#include <catch2/catch.hpp>
namespace xo {
using xo::reflect::TypeDescrBase;
namespace ut {
static InitEvidence s_init = (InitSubsys<S_process_tag>::require());
TEST_CASE("process-reflect", "[reflect]") {
Subsystem::initialize_all();
char const * c_self = "TEST_CASE:process-reflect";
constexpr bool c_logging_enabled = true;
scope log(XO_DEBUG2(c_logging_enabled, c_self));
// this ought to work but doesn't (too much output?)...
//log && log(xo::reflect::reflected_types_printer());
xo::reflect::TypeDescrBase::print_reflected_types(std::cout);
} /*TEST_CASE(process-reflect)*/
} /*namespace ut*/
} /*namespace xo*/
/* end ProcessReflect.test.cpp */