Skip to content
Snippets Groups Projects
Commit 6ee99fc3 authored by Lee Thomason's avatar Lee Thomason
Browse files

testing

parent e4422304
No related branches found
No related tags found
No related merge requests found
No preview for this file type
......@@ -29,12 +29,13 @@ int main( int argc, const char* argv )
#endif
{
static const char* test[] = { //"<element />",
"<element></element>",
// "<element></element>",
"<element><subelement/></element>",
0
};
for( const char* t=test[0]; *t; ++t ) {
for( int i=0; test[i]; ++i ) {
XMLDocument doc;
doc.Parse( t );
doc.Parse( test[i] );
doc.Print( stdout );
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment