testify/TestResult.php

11 lines
120 B
PHP

<?php
interface TestResult extends Countable {
public function passed();
public function failed();
}
?>