| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 33 | 3 | protected function assertPostConditions() |
|
| 34 | { |
||
| 35 | 3 | parent::assertPostConditions(); |
|
| 36 | |||
| 37 | // Add Mockery expectations to assertion count. |
||
| 38 | 3 | if (($container = \Mockery::getContainer()) !== null) { |
|
| 39 | 3 | $this->addToAssertionCount($container->mockery_getExpectationCount()); |
|
| 40 | } |
||
| 41 | |||
| 42 | // Verify Mockery expectations. |
||
| 43 | 3 | \Mockery::close(); |
|
| 44 | 3 | } |
|
| 45 | } |
||
| 46 |