summaryrefslogtreecommitdiffstats
path: root/test/src/test-issue-reporting.cpp
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2014-12-05 16:20:11 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2014-12-05 16:20:11 (GMT)
commit93f8cb376e6e496f0194d1e0657081354434da96 (patch)
tree551d4b37708cb983b73432029f370b605d76da29 /test/src/test-issue-reporting.cpp
parenta5a139f46438148901ea6627b73d1bf6ae39b346 (diff)
downloaduscxml-93f8cb376e6e496f0194d1e0657081354434da96.zip
uscxml-93f8cb376e6e496f0194d1e0657081354434da96.tar.gz
uscxml-93f8cb376e6e496f0194d1e0657081354434da96.tar.bz2
Support for xinclude
Diffstat (limited to 'test/src/test-issue-reporting.cpp')
-rw-r--r--test/src/test-issue-reporting.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/src/test-issue-reporting.cpp b/test/src/test-issue-reporting.cpp
index 39dad05..98c2a21 100644
--- a/test/src/test-issue-reporting.cpp
+++ b/test/src/test-issue-reporting.cpp
@@ -5,7 +5,7 @@
using namespace uscxml;
std::set<std::string> issueLocationsForXML(const std::string xml) {
- Interpreter interpreter = Interpreter::fromXML(xml);
+ Interpreter interpreter = Interpreter::fromXML(xml, "");
std::list<InterpreterIssue> issues = interpreter.validate();
std::set<std::string> issueLocations;
@@ -52,7 +52,7 @@ int main(int argc, char** argv) {
"</scxml>";
IssueMonitor monitor;
- Interpreter interpreter = Interpreter::fromXML(xml);
+ Interpreter interpreter = Interpreter::fromXML(xml, "");
interpreter.addMonitor(&monitor);
interpreter.interpret();