1 | <?php |
||
5 | trait AssertPhpCodeTrait |
||
6 | { |
||
7 | /** |
||
8 | * @param mixed $expected |
||
9 | * @param mixed $actual |
||
10 | * @param string $message |
||
11 | * @param float $delta |
||
12 | * @param int $maxDepth |
||
13 | * @param bool $canonicalize |
||
14 | * @param bool $ignoreCase |
||
15 | */ |
||
16 | abstract protected function assertEquals( |
||
25 | |||
26 | /** |
||
27 | * @param string $class |
||
28 | * @param string $method |
||
29 | * @param string $originalPhpCodeFile |
||
30 | */ |
||
31 | protected function assertPhpCode($class, $method, $originalPhpCodeFile) |
||
50 | } |
||
51 |