| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | public function testAuthor(): void |
||
| 30 | { |
||
| 31 | $author = new Author(); |
||
| 32 | $author->setEmail('[email protected]'); |
||
| 33 | $author->setName('foo'); |
||
| 34 | $this->assertEquals('[email protected]', $author->getEmail()); |
||
| 35 | $this->assertEquals('foo', $author->getName()); |
||
| 36 | $this->assertEquals('foo <[email protected]>', $author); |
||
| 37 | } |
||
| 38 | } |
||
| 39 |