Index: trunk/extensions/UnitTest/tests/TestConfiguration.php |
— | — | @@ -1,54 +0,0 @@ |
2 | | -<?php |
3 | | -/** |
4 | | - * Wikimedia Foundation |
5 | | - * |
6 | | - * LICENSE |
7 | | - * |
8 | | - * This program is free software; you can redistribute it and/or modify |
9 | | - * it under the terms of the GNU General Public License as published by |
10 | | - * the Free Software Foundation; either version 2 of the License, or |
11 | | - * (at your option) any later version. |
12 | | - * |
13 | | - * This program is distributed in the hope that it will be useful, |
14 | | - * but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | | - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16 | | - * GNU General Public License for more details. |
17 | | - * |
18 | | - * @author Jeremy Postlethwaite <jpostlethwaite@wikimedia.org> |
19 | | - */ |
20 | | - |
21 | | -/* |
22 | | - * Include PHPUnit dependencies |
23 | | - */ |
24 | | -require_once 'PHPUnit/Framework/IncompleteTestError.php'; |
25 | | -require_once 'PHPUnit/Framework/TestCase.php'; |
26 | | -require_once 'PHPUnit/Framework/TestSuite.php'; |
27 | | -require_once 'PHPUnit/Runner/Version.php'; |
28 | | -require_once 'PHPUnit/TextUI/TestRunner.php'; |
29 | | -require_once 'PHPUnit/Util/Filter.php'; |
30 | | - |
31 | | -/* |
32 | | - * This file contains custom options and constants for test configuration. |
33 | | - */ |
34 | | - |
35 | | -/** |
36 | | - * TESTS_MESSAGE_NOT_IMPLEMENTED |
37 | | - * |
38 | | - * Message for code that has not been implemented. |
39 | | - */ |
40 | | -define( 'TESTS_MESSAGE_NOT_IMPLEMENTED', 'Not implemented yet!' ); |
41 | | - |
42 | | -/** |
43 | | - * TESTS_HOSTNAME |
44 | | - * |
45 | | - * The hostname for the system |
46 | | - */ |
47 | | -define( 'TESTS_HOSTNAME', 'localhost' ); |
48 | | - |
49 | | -/** |
50 | | - * TESTS_EMAIL |
51 | | - * |
52 | | - * An email address to use in case test send mail |
53 | | - */ |
54 | | -define( 'TESTS_EMAIL', 'no-reply@example.org' ); |
55 | | - |