9 lines
90 B
PHP
9 lines
90 B
PHP
<?php
|
|
|
|
interface TestReporter {
|
|
|
|
public function write(TestResult $result);
|
|
|
|
}
|
|
|
|
?>
|