| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | protected function assertPostConditions() |
||
| 15 | { |
||
| 16 | parent::assertPostConditions(); |
||
| 17 | |||
| 18 | // Add Mockery expectations to assertion count. |
||
| 19 | if (($container = \Mockery::getContainer()) !== null) { |
||
| 20 | $this->addToAssertionCount($container->mockery_getExpectationCount()); |
||
| 21 | } |
||
| 22 | |||
| 23 | // Verify Mockery expectations. |
||
| 24 | \Mockery::close(); |
||
| 25 | } |
||
| 26 | } |
||
| 27 |