| 1 | <?php |
||
| 10 | class TestCase extends WebTestCase |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * Shortcut to the Container's get method. |
||
| 14 | * |
||
| 15 | * @param string $serviceId |
||
| 16 | * |
||
| 17 | * @return object |
||
| 18 | */ |
||
| 19 | public function get($serviceId) |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @param array $options Kernel options |
||
| 26 | * |
||
| 27 | * @return ContainerInterface |
||
| 28 | */ |
||
| 29 | public static function getContainer(array $options = []) |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @return EntityManagerInterface |
||
| 42 | */ |
||
| 43 | public function getEntityManager() |
||
| 47 | |||
| 48 | /** |
||
| 49 | * Returns fixtures of a type. |
||
| 50 | * |
||
| 51 | * @param string $type |
||
| 52 | * |
||
| 53 | * @return array |
||
| 54 | */ |
||
| 55 | public function getFixtures($type) |
||
| 61 | } |
||
| 62 |