summaryrefslogtreecommitdiffstats
path: root/mmc_updater/src/tests/TestParseScript.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'mmc_updater/src/tests/TestParseScript.cpp')
-rw-r--r--mmc_updater/src/tests/TestParseScript.cpp24
1 files changed, 0 insertions, 24 deletions
diff --git a/mmc_updater/src/tests/TestParseScript.cpp b/mmc_updater/src/tests/TestParseScript.cpp
deleted file mode 100644
index f4453957..00000000
--- a/mmc_updater/src/tests/TestParseScript.cpp
+++ /dev/null
@@ -1,24 +0,0 @@
-#include "TestParseScript.h"
-
-#include "TestUtils.h"
-#include "UpdateScript.h"
-
-#include <iostream>
-#include <algorithm>
-
-void TestParseScript::testParse()
-{
- UpdateScript script;
-
- script.parse("file_list.xml");
-
- TEST_COMPARE(script.isValid(),true);
-}
-
-int main(int,char**)
-{
- TestList<TestParseScript> tests;
- tests.addTest(&TestParseScript::testParse);
- return TestUtils::runTest(tests);
-}
-