Hacked By AnonymousFox

Current Path : /opt/alt/php54/usr/share/pear/test/XML_Util/tests/
Upload File :
Current File : //opt/alt/php54/usr/share/pear/test/XML_Util/tests/CreateEndElementTests.php

<?php

class CreateEndElementTests extends AbstractUnitTests
{
    /**
     * @covers XML_Util::createEndElement()
     */
    public function testCreateEndElementBasicUsage()
    {
        $original = "myTag";
        $expected = "</myTag>";
        $this->assertEquals($expected, XML_Util::createEndElement($original));
    }

    /**
     * @covers XML_Util::createEndElement()
     */
    public function testCreateEndElementWithNamespacedTag()
    {
        $original = "myNs:myTag";
        $expected = "</myNs:myTag>";
        $this->assertEquals($expected, XML_Util::createEndElement($original));
    }
}

Hacked By AnonymousFox1.0, Coded By AnonymousFox