From 168537848c7317f81ba44d0986e6cd7da2afb976 Mon Sep 17 00:00:00 2001 From: Adrian Kummerländer Date: Wed, 7 May 2014 16:46:48 +0200 Subject: 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 --- test.cc | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'test.cc') 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); -- cgit v1.2.3