| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 9 | 
| Code Lines | 6 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 23 | public function testTitle(): void | ||
| 24 |     { | ||
| 25 | $title = $this->feed->getTitle(); | ||
| 26 | |||
| 27 | $this->assertEquals(Node::class, Types::getClassOrType($title)); | ||
| 28 |         $this->assertEquals('Release notes from signer', (string) $title); | ||
| 29 |         $this->assertEquals('Release notes from signer', $title->getValue()); | ||
| 30 | $this->assertEquals(Serialization::TEXT, $title->getSerialization()); | ||
| 31 | } | ||
| 32 | |||
| 43 |