#include "TestParseScript.h" #include "TestUtils.h" #include "UpdateScript.h" #include #include void TestParseScript::testParse() { UpdateScript script; script.parse("file_list.xml"); TEST_COMPARE(script.isValid(),true); } int main(int,char**) { TestList tests; tests.addTest(&TestParseScript::testParse); return TestUtils::runTest(tests); }