25 lines
395 B
C++
25 lines
395 B
C++
|
#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);
|
||
|
}
|
||
|
|