testify/TestResult.php

11 lines
104 B
PHP

<?php
abstract class TestResult {
public function __construct(TestCase $test) {
}
}
?>