| Total Complexity | 3 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | class HistoryMiddlewareTest extends TestCase |
||
| 13 | { |
||
| 14 | private $journal; |
||
| 15 | /** @var HistoryMiddleware */ |
||
| 16 | private $middleware; |
||
| 17 | |||
| 18 | protected function setUp() |
||
| 19 | { |
||
| 20 | $this->journal = $this->getMockBuilder('Buzz\Middleware\History\Journal') |
||
| 21 | ->disableOriginalConstructor() |
||
| 22 | ->getMock(); |
||
| 23 | |||
| 24 | $this->middleware = new HistoryMiddleware($this->journal); |
||
| 25 | } |
||
| 26 | |||
| 27 | public function testHistory() |
||
| 38 | } |
||
| 39 | |||
| 40 | public function testGetter() |
||
| 43 | } |
||
| 44 | } |
||
| 45 |