1 | <?php |
||
17 | abstract class DependencyInjectionTest extends \PHPUnit_Framework_TestCase |
||
18 | { |
||
19 | /** |
||
20 | * Assertion on the Class of a DIC Service Definition. |
||
21 | * |
||
22 | * @param Definition $definition |
||
23 | * @param string $expectedClass |
||
24 | */ |
||
25 | protected function assertDICDefinitionClass($definition, $expectedClass) |
||
31 | |||
32 | /** |
||
33 | * @param Definition $definition |
||
34 | * @param array $args |
||
35 | */ |
||
36 | protected function assertDICConstructorArguments($definition, $args) |
||
45 | |||
46 | /** |
||
47 | * @param int $pos |
||
48 | * @param Definition $definition |
||
49 | * @param string $methodName |
||
50 | * @param array $params |
||
51 | */ |
||
52 | protected function assertDICDefinitionMethodCallAt($pos, $definition, $methodName, array $params = null) |
||
73 | } |
||
74 |