| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | public function testBuild() |
||
| 30 | { |
||
| 31 | /** @var IView|MockObject $viewMock */ |
||
| 32 | $viewMock = $this->createMock(IView::class); |
||
| 33 | |||
| 34 | $this->eventDispatcherMock->expects($this->atLeastOnce())->method('dispatch'); |
||
| 35 | |||
| 36 | $actualResult = $this->sut->build($viewMock); |
||
| 37 | |||
| 38 | $this->assertSame($viewMock, $actualResult); |
||
| 39 | } |
||
| 41 |