aboutsummaryrefslogtreecommitdiff
path: root/test.cc
diff options
context:
space:
mode:
authorAdrian Kummerländer2014-05-07 16:46:48 +0200
committerAdrian Kummerländer2014-05-07 16:46:48 +0200
commit168537848c7317f81ba44d0986e6cd7da2afb976 (patch)
tree23c8f041329297faa265a223065467702ccb2a00 /test.cc
parente17ba6dde7588f717bc5e79b3cb64cddd73d6173 (diff)
downloadInputXSLT-168537848c7317f81ba44d0986e6cd7da2afb976.tar
InputXSLT-168537848c7317f81ba44d0986e6cd7da2afb976.tar.gz
InputXSLT-168537848c7317f81ba44d0986e6cd7da2afb976.tar.bz2
InputXSLT-168537848c7317f81ba44d0986e6cd7da2afb976.tar.lz
InputXSLT-168537848c7317f81ba44d0986e6cd7da2afb976.tar.xz
InputXSLT-168537848c7317f81ba44d0986e6cd7da2afb976.tar.zst
InputXSLT-168537848c7317f81ba44d0986e6cd7da2afb976.zip
Extracted core functionality into static libary
* this was needed to share object files between the newly separated test-case and example target executables * allows for easy development of multiple "frontends" to the same core functionality
Diffstat (limited to 'test.cc')
-rw-r--r--test.cc7
1 files changed, 1 insertions, 6 deletions
diff --git a/test.cc b/test.cc
index c024048..b3bf40e 100644
--- a/test.cc
+++ b/test.cc
@@ -3,13 +3,8 @@
#include "gtest/gtest.h"
-int main(int argc, char **argv) {
+int main(int argc, char** argv) {
InputXSLT::PlattformGuard plattform;
- InputXSLT::TransformationFacade transformation("../dummy/transform.xsl");
-
- transformation.generate("out.xml", {
- {"test", "42"}
- });
testing::InitGoogleTest(&argc, argv);