CMake/Tests/CMakeLib/testXMLParser.cxx
Brad King 5872cc7c1f Create CMakeLib test driver and test cmXMLParser
We create a new CMakeLibTests driver executable in which to writes unit
tests for CMakeLib.  Our first test is a smoke-test of cmXMLParser.
2009-12-08 11:44:50 -05:00

18 lines
355 B
C++

#include "testXMLParser.h"
#include "cmXMLParser.h"
#include <cmsys/ios/iostream>
int testXMLParser(int, char*[])
{
// TODO: Derive from parser and check attributes.
cmXMLParser parser;
if(!parser.ParseFile(SOURCE_DIR "/testXMLParser.xml"))
{
cmsys_ios::cerr << "cmXMLParser failed!" << cmsys_ios::endl;
return 1;
}
return 0;
}