Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
40 | public function testXML() |
||
41 | { |
||
42 | $dom = new \DOMDocument("1.0", "utf-8"); |
||
43 | $content = $dom->createElement("content", $this->getContent()); |
||
44 | $dom->appendChild($content); |
||
45 | $xmlFactory = new XMLFactory(); |
||
46 | |||
47 | |||
48 | $this->assertEquals($xmlFactory->createMessage($this->getContent())->getContent(), $dom->saveXML()); |
||
49 | } |
||
59 |