comparison mde/mde.d @ 68:3a737e06dc50

Unittests: fixes and changes. Plus some doc changes.
author Diggory Hardy <diggory.hardy@gmail.com>
date Fri, 04 Jul 2008 18:49:16 +0100
parents cc3763817b8a
children 25cb7420dc91
comparison
equal deleted inserted replaced
67:108d123238c0 68:3a737e06dc50
38 38
39 int main(char[][] args) 39 int main(char[][] args)
40 { 40 {
41 //BEGIN Initialisation 41 //BEGIN Initialisation
42 Logger logger = Log.getLogger ("mde.mde"); 42 Logger logger = Log.getLogger ("mde.mde");
43 debug (mdeUnitTest) {
44 logger.info ("Compiled unittests have completed; terminating.");
45 return 0;
46 }
43 47
44 // Create instances now, so they can be used during init (if necessary) 48 // Create instances now, so they can be used during init (if necessary)
45 input = new Input(); 49 input = new Input();
46 mainSchedule = new Scheduler; 50 mainSchedule = new Scheduler;
47 51