123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- <?php
- /**
- * Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:54.
- */
- class SimpleXMLElementTest extends PHPUnit_Framework_TestCase
- {
- /**
- * @var SimpleXMLElement
- */
- protected $object;
- /**
- * Sets up the fixture, for example, opens a network connection.
- * This method is called before a test is executed.
- */
- protected function setUp()
- {
- $this->object = new SimpleXMLElement;
- }
- /**
- * Tears down the fixture, for example, closes a network connection.
- * This method is called after a test is executed.
- */
- protected function tearDown()
- {
- }
- /**
- * @covers SimpleXMLElement::asXML
- * @todo Implement testAsXML().
- */
- public function testAsXML()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SimpleXMLElement::saveXML
- * @todo Implement testSaveXML().
- */
- public function testSaveXML()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SimpleXMLElement::xpath
- * @todo Implement testXpath().
- */
- public function testXpath()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SimpleXMLElement::registerXPathNamespace
- * @todo Implement testRegisterXPathNamespace().
- */
- public function testRegisterXPathNamespace()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SimpleXMLElement::attributes
- * @todo Implement testAttributes().
- */
- public function testAttributes()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SimpleXMLElement::children
- * @todo Implement testChildren().
- */
- public function testChildren()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SimpleXMLElement::getNamespaces
- * @todo Implement testGetNamespaces().
- */
- public function testGetNamespaces()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SimpleXMLElement::getDocNamespaces
- * @todo Implement testGetDocNamespaces().
- */
- public function testGetDocNamespaces()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SimpleXMLElement::getName
- * @todo Implement testGetName().
- */
- public function testGetName()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SimpleXMLElement::addChild
- * @todo Implement testAddChild().
- */
- public function testAddChild()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SimpleXMLElement::addAttribute
- * @todo Implement testAddAttribute().
- */
- public function testAddAttribute()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SimpleXMLElement::__toString
- * @todo Implement test__toString().
- */
- public function test__toString()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers SimpleXMLElement::count
- * @todo Implement testCount().
- */
- public function testCount()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- }
|