From 209f0b2fd9310f503d4599b12483fddc04d1f7dd Mon Sep 17 00:00:00 2001 From: Adrian Kummerländer Date: Thu, 8 May 2014 20:14:35 +0200 Subject: Removed gtest based test cases and added program options * selectively testing document construction in plain C++ code has turned out to be more work than worth it ** i.e. removed test cases and GTest dependency * added boost::program_options based frontent to InputXSLT ** example command: "./test --transformation ../dummy/transform.xsl --target out.xml" ** the plan is to use a simple shell script that generated test transformations and compares the output to reference files --- example.cc | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 example.cc (limited to 'example.cc') diff --git a/example.cc b/example.cc deleted file mode 100644 index a0c122d..0000000 --- a/example.cc +++ /dev/null @@ -1,11 +0,0 @@ -#include "plattform_guard.h" -#include "transformation_facade.h" - -int main(int, char**) { - InputXSLT::PlattformGuard plattform; - InputXSLT::TransformationFacade transformation("../dummy/transform.xsl"); - - return transformation.generate("out.xml", { - {"test", "42"} - }); -} -- cgit v1.2.3