1 | <?php |
||
17 | class TestCase extends \PHPUnit_Framework_TestCase |
||
18 | { |
||
19 | /** |
||
20 | * Compare the outputs with an expected input. |
||
21 | * |
||
22 | * Each element in the array is a call to `write/writeln/reWrite` |
||
23 | * Each element in the child array is a line to be written |
||
24 | * |
||
25 | * @param string[][] $expected Set of regular expressions to match against |
||
26 | * @param string[][] $actual The actual output |
||
27 | */ |
||
28 | protected function compareOutputs(array $expected, array $actual) |
||
41 | } |
||
42 |