| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 21 | public function testFormat() |
||
| 22 | { |
||
| 23 | $formatter = $this->getMockFormatter(true); |
||
| 24 | $this->defaultChannel->setDataFormatter($formatter); |
||
| 25 | |||
| 26 | $message = $this->defaultChannel->format($this->notification); |
||
| 27 | |||
| 28 | $this->assertInstanceOf('IrishDan\NotificationBundle\Message\MessageInterface', $message); |
||
| 29 | } |
||
| 30 | |||
| 56 |