Commit e2644543381e764afa3cccfcf8df37b77ac29f98
1 parent
5be9e0d9
Exists in
master
and in
95 other branches
Fix apache alias to test WS
Showing
2 changed files
with
2 additions
and
4 deletions
Show diff stats
php/WebServices/Tests/Base/TestsSuite.php
php/wsTests.php
... | ... | @@ -7,8 +7,6 @@ set_include_path(get_include_path() . PATH_SEPARATOR . "WebServices/Tests/"); |
7 | 7 | |
8 | 8 | require_once("Base/TestsSuite.php"); |
9 | 9 | |
10 | -define("BASE_URL","http://127.0.0.1"); | |
11 | - | |
12 | 10 | $suite = new TestsSuite(); |
13 | 11 | $suite->init('WebServices/Tests/Suite'); |
14 | 12 | $results = $suite->run(); |
... | ... | @@ -16,7 +14,7 @@ $results = $suite->run(); |
16 | 14 | $error = FALSE; |
17 | 15 | foreach ($results as $result) { |
18 | 16 | if (!$result['status']['success']) { |
19 | - echo "[ERROR] ".$result['name']." - ".$result['status']['message'].PHP_EOL; | |
17 | + echo "[ERROR] ".$result['name']." - ".$result['type']." - ".$result['status']['message'].PHP_EOL; | |
20 | 18 | $error = TRUE; |
21 | 19 | } |
22 | 20 | } |
... | ... |