testify/src/TUnit/framework/TestReporter.php

9 lines
90 B
PHP

<?php
interface TestReporter {
public function write(TestResult $result);
}
?>