From 745875139b5ee46e469927d410364bfeeedb2995 Mon Sep 17 00:00:00 2001
From: Mike Buland <eichlan@xagasoft.com>
Date: Wed, 11 Oct 2006 15:47:45 +0000
Subject: Despite some svn oddness, I'm now moving to a new setup for the
 tests, that's very much like the original one, but now using build.  You will
 need the latest build in order to build the tests.

---
 src/tests/xmlreadtest/xmlreadtest.cpp | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)
 create mode 100644 src/tests/xmlreadtest/xmlreadtest.cpp

(limited to 'src/tests/xmlreadtest')

diff --git a/src/tests/xmlreadtest/xmlreadtest.cpp b/src/tests/xmlreadtest/xmlreadtest.cpp
new file mode 100644
index 0000000..98d8a9e
--- /dev/null
+++ b/src/tests/xmlreadtest/xmlreadtest.cpp
@@ -0,0 +1,29 @@
+#include "xmlfilereader.h"
+#include "xmlstringreader.h"
+#include "xmlfilewriter.h"
+
+int main( int argc, char *argv[] )
+{
+	if( argc < 4 )
+	{
+		printf("Usage: %s f <file in> <file out>\n", argv[0] );
+		printf("       %s s <xml string> <file out>\n\n", argv[0] );
+		return 0;
+	}
+
+	if( argv[1][0] == 'f' )
+	{
+		XmlFileReader r( argv[2], true );
+//		XmlFileWriter w( argv[3], "\t", r.detatchRoot() );
+//		w.write();
+	}
+	else if( argv[1][0] == 's' )
+	{
+		XmlStringReader r( argv[2], true );
+//		XmlWriter w( argv[3], "\t", r.detatchRoot() );
+//		w.write();
+	}
+
+	return 0;
+}
+
-- 
cgit v1.2.3