comparison trunk/src/docgen/testsuite.d @ 717:cb8edb09108a

Updated docgen (mostly) to new tango. Reflective options. Updated translations.
author Jari-Matti M?kel? <jmjm@iki.fi>
date Fri, 01 Feb 2008 15:05:56 +0200
parents 757bd048482c
children 231c9a44ba8e
comparison
equal deleted inserted replaced
716:08e6174a2e1c 717:cb8edb09108a
6 6
7 import docgen.tests.graphs; 7 import docgen.tests.graphs;
8 import docgen.tests.parse; 8 import docgen.tests.parse;
9 import docgen.tests.doctemplate; 9 import docgen.tests.doctemplate;
10 import docgen.tests.listing; 10 import docgen.tests.listing;
11 //import docgen.tests.sexp;
11 import tango.io.Stdout; 12 import tango.io.Stdout;
12 13
13 /** 14 /**
14 * A temporary test program for the docgen package. 15 * A temporary test program for the docgen package.
15 * I'll replace this with proper unittests in the future. 16 * I'll replace this with proper unittests in the future.
16 * 17 *
17 */ 18 */
18 void main() { 19 void main() {
19 Stdout("Running.."); 20 Stdout("Running..");
21
20 graph1(); 22 graph1();
21 graph2(); 23 graph2();
22 graph3(); 24 graph3();
23 graph4(); 25 graph4();
24 graph5(); 26 graph5();
25 parse1(); 27 parse1();
26 parse2(); 28 parse2();
27 doctemplate1(); 29 doctemplate1();
28 listing1(); 30 listing1();
31 // loadConfig();
29 Stdout("done.\n"); 32 Stdout("done.\n");
30 } 33 }