1
0
mirror of synced 2024-12-14 07:06:04 +03:00

Separate correctly test messages when running from the browser, and get the variables through _GET

This commit is contained in:
jackbravo 2007-09-05 19:02:41 +00:00
parent 543cd86f74
commit 93f452cde1

View File

@ -375,7 +375,7 @@ class MyReporter extends HtmlReporter {
print '<pre>';
foreach ($this->_test->getMessages() as $message) {
print $message;
print "<p>$message</p>";
}
print '</pre>';
$colour = ($this->_test->getFailCount() > 0 ? 'red' : 'green');
@ -394,13 +394,14 @@ class MyReporter extends HtmlReporter {
<?php
if (PHP_SAPI === 'cli') {
$reporter = new CliReporter();
$argv = $_SERVER['argv'];
array_shift($argv);
$options = parseOptions($argv);
} else {
$options = $_GET;
$reporter = new MyReporter();
}
$argv = isset($_SERVER['argv']) ? $_SERVER['argv'] : array();
array_shift($argv);
$options = parseOptions($argv);
if (isset($options['group'])) {
$testGroup = new GroupTest('Custom');