| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | public function testSummary(): void |
||
| 24 | { |
||
| 25 | $summary = $this->feed->getSummary(); |
||
| 26 | |||
| 27 | $this->assertEquals(Node::class, Types::getClassOrType($summary)); |
||
| 28 | $this->assertEquals('This is a bunch of CDATA! 😀 […]', (string) $summary); |
||
| 29 | $this->assertEquals('This is a bunch of CDATA! 😀 […]', $summary->getValue()); |
||
| 30 | $this->assertEquals(Serialization::HTML, $summary->getSerialization()); |
||
| 31 | } |
||
| 32 | |||
| 43 |