| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 25 | public function iCallMethodOnRepositoryWithExistingEntitiesAndParametersAndExpectingException( |
||
| 26 | string $method, |
||
| 27 | TableNode $parameters |
||
| 28 | ) { |
||
| 29 | try { |
||
| 30 | $this->callMethodOnRepositoryWithExistingEntitiesAndParameters($method, $parameters); |
||
| 31 | } catch (\Exception $e) { |
||
| 32 | static::$entities = []; |
||
| 33 | static::$exception = $e; |
||
| 34 | } |
||
| 62 |