From 904dff1c370458501d415ab8fcd30a3ab82a5ade Mon Sep 17 00:00:00 2001 From: Michael Davidsaver Date: Mon, 19 Oct 2020 22:41:43 -0700 Subject: [PATCH] start testutil --- test/testutil.cpp | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 test/testutil.cpp diff --git a/test/testutil.cpp b/test/testutil.cpp new file mode 100644 index 0000000..2dbed3a --- /dev/null +++ b/test/testutil.cpp @@ -0,0 +1,27 @@ +/** + * Copyright - See the COPYRIGHT that is included with this distribution. + * pvxs is distributed subject to a Software License Agreement found + * in file LICENSE that is included with this distribution. + */ + +#include + +#include +#include + +#include + +#include +#include + +namespace { +using namespace pvxs; + + +} // namespace + +MAIN(testutil) +{ + testPlan(0); + return testDone(); +}