-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathrunTests.php
More file actions
51 lines (48 loc) · 2.39 KB
/
runTests.php
File metadata and controls
51 lines (48 loc) · 2.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
/**
* Copyright 2007-2009 Charles du Jeu / Cyril Russo
* This file is part of AjaXplorer.
* The latest code can be found at http://www.ajaxplorer.info/
*
* This program is published under the LGPL Gnu Lesser General Public License.
* You should have received a copy of the license along with AjaXplorer.
*
* The main conditions are as follow :
* You must conspicuously and appropriately publish on each copy distributed
* an appropriate copyright notice and disclaimer of warranty and keep intact
* all the notices that refer to this License and to the absence of any warranty;
* and give any other recipients of the Program a copy of the GNU Lesser General
* Public License along with the Program.
*
* If you modify your copy or copies of the library or any portion of it, you may
* distribute the resulting library provided you do so under the GNU Lesser
* General Public License. However, programs that link to the library may be
* licensed under terms of your choice, so long as the library itself can be changed.
* Any translation of the GNU Lesser General Public License must be accompanied by the
* GNU Lesser General Public License.
*
* If you copy or distribute the program, you must accompany it with the complete
* corresponding machine-readable source code or with a written offer, valid for at
* least three years, to furnish the complete corresponding machine-readable source code.
*
* Any of the above conditions can be waived if you get permission from the copyright holder.
* AjaXplorer is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* Description : test runner script. Disabled by default, comment the "die" line if you want to run it.
*/
/**
* If you want to run the tests, first comment this line!
* It is disabled for security purpose
*/
die("You are not allowed to see this page (comment first line of the file to access it!)");
require_once("server/conf/base.conf.php");
require_once("server/classes/class.AJXP_Logger.php");
require_once("server/classes/class.AJXP_Utils.php");
$outputArray = array();
$testedParams = array();
$passed = true;
$passed = AJXP_Utils::runTests($outputArray, $testedParams);
print(AJXP_Utils::testResultsToTable($outputArray, $testedParams, false));
AJXP_Utils::testResultsToFile($outputArray, $testedParams);
?>