comparison src/docgen/testsuite.d @ 806:bcb74c9b895c

Moved out files in the trunk folder to the root.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Sun, 09 Mar 2008 00:12:19 +0100
parents trunk/src/docgen/testsuite.d@231c9a44ba8e
children
comparison
equal deleted inserted replaced
805:a3fab8b74a7d 806:bcb74c9b895c
1 /**
2 * Author: Jari-Matti Mäkelä
3 * License: GPL3
4 */
5 module docgen.testsuite;
6
7 import docgen.tests.graphs;
8 import docgen.tests.parse;
9 import docgen.tests.doctemplate;
10 import docgen.tests.listing;
11 //import docgen.tests.sexp;
12 import tango.io.Stdout;
13
14 /**
15 * A temporary test program for the docgen package.
16 * I'll replace this with proper unittests in the future.
17 *
18 */
19 void main() {
20 Stdout("Running..\n")();
21
22 Stdout(" Test1\n")();
23 graph1();
24 Stdout(" Test2\n")();
25 graph2();
26 Stdout(" Test3\n")();
27 graph3();
28 Stdout(" Test4\n")();
29 graph4();
30 Stdout(" Test5\n")();
31 graph5();
32 Stdout(" Test6\n")();
33 parse1();
34 Stdout(" Test7\n")();
35 parse2();
36 Stdout(" Test8\n")();
37 doctemplate1();
38 Stdout(" Test9\n")();
39 listing1();
40 // loadConfig();
41 Stdout("done.\n")();
42 }