view 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
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 docgen.tests.listing;
//import docgen.tests.sexp;
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();
  graph5();
  parse1();
  parse2();
  doctemplate1();
  listing1();
//  loadConfig();
  Stdout("done.\n");
}