diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-02 12:11:48 +0100 |
---|---|---|
committer | Andreas Stöckel <andreas@somweyr.de> | 2015-01-02 12:11:48 +0100 |
commit | a68ee5ed18d9f6744ce99890b8e0249dff3bd070 (patch) | |
tree | 9a86334d6e26250f2c90fb82199c11717c7b034e /test/plugins | |
parent | 8ff05a11e6fbab7ed5e029f06152b2860e6f229b (diff) |
Moved StandaloneParserContext to test folder
Diffstat (limited to 'test/plugins')
-rw-r--r-- | test/plugins/css/CSSParserTest.cpp | 2 | ||||
-rw-r--r-- | test/plugins/xml/XmlParserTest.cpp | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/test/plugins/css/CSSParserTest.cpp b/test/plugins/css/CSSParserTest.cpp index e47d364..606327e 100644 --- a/test/plugins/css/CSSParserTest.cpp +++ b/test/plugins/css/CSSParserTest.cpp @@ -23,6 +23,8 @@ #include <plugins/css/CSSParser.hpp> +#include <core/parser/StandaloneParserContext.hpp> + namespace ousia { namespace parser { namespace css { diff --git a/test/plugins/xml/XmlParserTest.cpp b/test/plugins/xml/XmlParserTest.cpp index 886cccc..1dbca60 100644 --- a/test/plugins/xml/XmlParserTest.cpp +++ b/test/plugins/xml/XmlParserTest.cpp @@ -21,6 +21,7 @@ #include <gtest/gtest.h> #include <core/common/Logger.hpp> +#include <core/parser/StandaloneParserContext.hpp> #include <plugins/xml/XmlParser.hpp> @@ -28,7 +29,7 @@ namespace ousia { namespace parser { namespace xml { -TerminalLogger logger(std::cerr, true); +static TerminalLogger logger(std::cerr, true); TEST(XmlParser, mismatchedTagException) { |