subrepo: subdir: "xo-procedure2" merged: "58848bc9" upstream: origin: "git@github.com:Rconybea/xo-procedure2.git" branch: "main" commit: "58848bc9" git-subrepo: version: "0.4.9" origin: "???" commit: "???"
20 lines
336 B
C++
20 lines
336 B
C++
/* file procedure2_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;
|
|
|
|
Subsystem::initialize_all();
|
|
|
|
int result = Catch::Session().run(argc, argv);
|
|
|
|
return result;
|
|
}
|
|
|
|
/* end procedure2_utest_main.cpp */
|