1 | <?php |
||
19 | $this->xmlElementName = null; |
||
20 | $xml = $this->toXml(); |
||
21 | $this->assertEquals('ElementNameTest', $xml->tagName); |
||
22 | } |
||
23 | |||
24 | public function testCustom() |
||
25 | { |
||
26 | $this->xmlElementName = 'someThingDifferent'; |
||
27 | $xml = $this->toXml(); |
||
28 | $this->assertEquals($this->xmlElementName, $xml->tagName); |
||
29 | } |
||
30 | } |
||
31 |