Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
30 | public function testXML() |
||
31 | { |
||
32 | $dom = new \DOMDocument("1.0", "utf-8"); |
||
33 | $content = $dom->createElement("content", $this->content); |
||
34 | $dom->appendChild($content); |
||
35 | $xmlFactory = new XMLFactory(); |
||
36 | |||
37 | $this->assertEquals($xmlFactory->createMessage($this->content), $dom->saveXML()); |
||
38 | } |
||
40 |