Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
33 | public function testTitleAtom10(): void |
||
34 | { |
||
35 | $title = $this->feed->getTitle('atom10'); |
||
36 | |||
37 | $this->assertEquals(Node::class, Types::getClassOrType($title)); |
||
38 | $this->assertEquals('Release notes from signer', (string) $title); |
||
39 | $this->assertEquals('Release notes from signer', $title->getValue()); |
||
40 | $this->assertEquals(Serialization::TEXT, $title->getSerialization()); |
||
41 | } |
||
42 | } |
||
43 |