diff trunk/src/docgen/testsuite.d @ 441:13ecfb4278a4

Initial docgen test stuff.
author Jari-Matti M?kel? <jmjm@iki.fi>
date Tue, 16 Oct 2007 17:53:59 +0300
parents
children 0bda71dc9c4f
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/trunk/src/docgen/testsuite.d	Tue Oct 16 17:53:59 2007 +0300
@@ -0,0 +1,25 @@
+/**
+ * Author: Jari-Matti Mäkelä
+ * License: GPL3
+ */
+module docgen.testsuite;
+
+import docgen.tests.graphs;
+import docgen.tests.parse;
+import tango.io.Stdout;
+
+/**
+ * A temporary test program for the docgen package.
+ * I'll replace this with proper unittests in the future.
+ *
+ */
+void main() {
+  Stdout("Running..");
+  graph1();
+  graph2();
+  graph3();
+  graph4();
+  parse1();
+  parse2();
+  Stdout("done.\n");
+}