testify/TestResult.php

11 lines
104 B
PHP
Raw Normal View History

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