| Total Complexity | 1 |
| Total Lines | 10 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class XmlSerializableTest extends TestCase |
||
| 8 | { |
||
| 9 | |||
| 10 | public function test_object_to_xml_representation() |
||
| 11 | { |
||
| 12 | $this->markTestSkipped(); |
||
| 13 | $SUT = new Immutable(require __DIR__ . '/fixtures/error-message.php'); |
||
| 14 | $xml = $SUT->toXML('payload'); |
||
| 15 | |||
| 16 | $this->assertXmlStringEqualsXmlFile(__DIR__ . '/fixtures/error-message.xml', $xml); |
||
| 17 | } |
||
| 19 |