40 lines
848 B
PHP
40 lines
848 B
PHP
<?php
|
|
|
|
class TestRunner {
|
|
|
|
protected $tests;
|
|
protected $listeners;
|
|
|
|
public function __construct(array $tests, array $listeners = array()) {
|
|
$this->tests = $tests;
|
|
$this->listeners = $listeners;
|
|
}
|
|
|
|
public function addTest(Testable $test) {
|
|
$this->tests[] = $test;
|
|
return $this;
|
|
}
|
|
|
|
public function addListener(TestListener $listener) {
|
|
$this->listeners[] = $listener;
|
|
return $this;
|
|
}
|
|
|
|
public function runTests() {
|
|
$results = array();
|
|
foreach ($this->tests as $test) {
|
|
if ($test instanceof Testable) {
|
|
$results[] = $test->run($this->listeners);
|
|
} else {
|
|
foreach ($this->listeners as $listener) {
|
|
$listener->onFrameworkWarning('Unable to run test because it is not an instanceof Testable (' . gettype($test) . ')');
|
|
}
|
|
}
|
|
}
|
|
|
|
return $results;
|
|
}
|
|
|
|
}
|
|
|
|
?>
|