annotate tests/all.d @ 40:02dbd18b7fe9

Moved all tests into its own modules.
author Jacob Carlborg <doob@me.com>
date Sat, 06 Aug 2011 13:27:21 +0200
parents fc315d786f24
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
27
fc315d786f24 Added unit testing.
Jacob Carlborg <doob@me.com>
parents:
diff changeset
1 /**
fc315d786f24 Added unit testing.
Jacob Carlborg <doob@me.com>
parents:
diff changeset
2 * Copyright: Copyright (c) 2010 Jacob Carlborg. All rights reserved.
fc315d786f24 Added unit testing.
Jacob Carlborg <doob@me.com>
parents:
diff changeset
3 * Authors: Jacob Carlborg
fc315d786f24 Added unit testing.
Jacob Carlborg <doob@me.com>
parents:
diff changeset
4 * Version: Initial created: Nov 5, 2010
fc315d786f24 Added unit testing.
Jacob Carlborg <doob@me.com>
parents:
diff changeset
5 * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0)
fc315d786f24 Added unit testing.
Jacob Carlborg <doob@me.com>
parents:
diff changeset
6 */
fc315d786f24 Added unit testing.
Jacob Carlborg <doob@me.com>
parents:
diff changeset
7 module tests.all;
fc315d786f24 Added unit testing.
Jacob Carlborg <doob@me.com>
parents:
diff changeset
8
fc315d786f24 Added unit testing.
Jacob Carlborg <doob@me.com>
parents:
diff changeset
9 import orange.test.UnitTester;
40
02dbd18b7fe9 Moved all tests into its own modules.
Jacob Carlborg <doob@me.com>
parents: 27
diff changeset
10 import tests._;
02dbd18b7fe9 Moved all tests into its own modules.
Jacob Carlborg <doob@me.com>
parents: 27
diff changeset
11
02dbd18b7fe9 Moved all tests into its own modules.
Jacob Carlborg <doob@me.com>
parents: 27
diff changeset
12 /*
02dbd18b7fe9 Moved all tests into its own modules.
Jacob Carlborg <doob@me.com>
parents: 27
diff changeset
13 * The tests that test for XML with attributes are not completely
02dbd18b7fe9 Moved all tests into its own modules.
Jacob Carlborg <doob@me.com>
parents: 27
diff changeset
14 * reliable, due to the XML module in Phobos saves the XML
02dbd18b7fe9 Moved all tests into its own modules.
Jacob Carlborg <doob@me.com>
parents: 27
diff changeset
15 * attributes in an associative array.
02dbd18b7fe9 Moved all tests into its own modules.
Jacob Carlborg <doob@me.com>
parents: 27
diff changeset
16 */
27
fc315d786f24 Added unit testing.
Jacob Carlborg <doob@me.com>
parents:
diff changeset
17
fc315d786f24 Added unit testing.
Jacob Carlborg <doob@me.com>
parents:
diff changeset
18 void main ()
fc315d786f24 Added unit testing.
Jacob Carlborg <doob@me.com>
parents:
diff changeset
19 {
fc315d786f24 Added unit testing.
Jacob Carlborg <doob@me.com>
parents:
diff changeset
20 run;
fc315d786f24 Added unit testing.
Jacob Carlborg <doob@me.com>
parents:
diff changeset
21 }