Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
33 | public function testSummaryAtom10(): void |
||
34 | { |
||
35 | $summary = $this->feed->getSummary('atom10'); |
||
36 | |||
37 | $this->assertEquals(Node::class, Types::getClassOrType($summary)); |
||
38 | $this->assertEquals('This is a bunch of CDATA! 😀 […]', (string) $summary); |
||
39 | $this->assertEquals('This is a bunch of CDATA! 😀 […]', $summary->getValue()); |
||
40 | $this->assertEquals(Serialization::HTML, $summary->getSerialization()); |
||
41 | } |
||
42 | } |
||
43 |