view trunk/src/docgen/testsuite.d @ 444:0bda71dc9c4f

More document template and source listing code.
author Jari-Matti M?kel? <jmjm@iki.fi>
date Wed, 17 Oct 2007 03:12:46 +0300
parents 13ecfb4278a4
children 49f3afd6a0e8
line wrap: on
line source

/**
 * Author: Jari-Matti Mäkelä
 * License: GPL3
 */
module docgen.testsuite;

import docgen.tests.graphs;
import docgen.tests.parse;
import docgen.tests.doctemplate;
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();
  doctemplate1();
  
  Stdout("done.\n");
}