test cases in progress
diff --git a/xmltest.cpp b/xmltest.cpp
index 8f724bf..2bc5de6 100644
--- a/xmltest.cpp
+++ b/xmltest.cpp
@@ -28,11 +28,15 @@
 	}

 #endif

 	{

-		static const char* test = "<element />";

-

-		XMLDocument doc;

-		doc.Parse( test );

-		doc.Print( stdout );

+		static const char* test[] = {	"<element />",

+									    "<element></element>",

+										0

+		};

+		for( const char* t=test[0]; *t; ++t ) {

+			XMLDocument doc;

+			doc.Parse( t );

+			doc.Print( stdout );

+		}

 	}

 	return 0;

 }
\ No newline at end of file