| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 33 | public function testIdAtom10(): void |
||
| 34 | { |
||
| 35 | $id = $this->feed->getId('atom10'); |
||
| 36 | |||
| 37 | $this->assertEquals(Node::class, Types::getClassOrType($id)); |
||
| 38 | $this->assertEquals('tag:github.com,2008:https://github.com/skyzyx/signer/releases', (string) $id); |
||
| 39 | $this->assertEquals('tag:github.com,2008:https://github.com/skyzyx/signer/releases', $id->getValue()); |
||
| 40 | $this->assertEquals(Serialization::TEXT, $id->getSerialization()); |
||
| 41 | } |
||
| 42 | } |
||
| 43 |