Make tests work
[platal.git] / include / test.inc.php
CommitLineData
5d0c351e
FB
1<?php
2/***************************************************************************
e92ecb8c 3 * Copyright (C) 2003-2011 Polytechnique.org *
5d0c351e
FB
4 * http://opensource.polytechnique.org/ *
5 * *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 2 of the License, or *
9 * (at your option) any later version. *
10 * *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program; if not, write to the Free Software *
18 * Foundation, Inc., *
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
20 ***************************************************************************/
21
535db776 22// Include test.inc.php from a parent project, if it exists
6e9ded65
FB
23$testinclude = dirname(__FILE__) . '/../../include/test.inc.php';
24if (file_exists($testinclude)) {
25 require_once $testinclude;
26} else {
536fc7f7 27 require_once dirname(__FILE__) . '/platal.inc.php';
5d0c351e 28
535db776
NI
29 if (function_exists('spl_autoload_register')) {
30 spl_autoload_register('pl_autoload');
31 } else {
32 // Use non-SPL autoloading as a fallback for PHP < 5.1.2
33 function __autoload($class)
34 {
35 pl_autoload($class);
36 }
536fc7f7 37 }
5d0c351e
FB
38}
39
40// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
41?>