123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244 |
- <?php
- /**
- * Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:47.
- */
- class DOMElementTest extends PHPUnit_Framework_TestCase
- {
- /**
- * @var DOMElement
- */
- 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 DOMElement;
- }
- /**
- * Tears down the fixture, for example, closes a network connection.
- * This method is called after a test is executed.
- */
- protected function tearDown()
- {
- }
- /**
- * @covers DOMElement::getAttribute
- * @todo Implement testGetAttribute().
- */
- public function testGetAttribute()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DOMElement::setAttribute
- * @todo Implement testSetAttribute().
- */
- public function testSetAttribute()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DOMElement::removeAttribute
- * @todo Implement testRemoveAttribute().
- */
- public function testRemoveAttribute()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DOMElement::getAttributeNode
- * @todo Implement testGetAttributeNode().
- */
- public function testGetAttributeNode()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DOMElement::setAttributeNode
- * @todo Implement testSetAttributeNode().
- */
- public function testSetAttributeNode()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DOMElement::removeAttributeNode
- * @todo Implement testRemoveAttributeNode().
- */
- public function testRemoveAttributeNode()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DOMElement::getElementsByTagName
- * @todo Implement testGetElementsByTagName().
- */
- public function testGetElementsByTagName()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DOMElement::getAttributeNS
- * @todo Implement testGetAttributeNS().
- */
- public function testGetAttributeNS()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DOMElement::setAttributeNS
- * @todo Implement testSetAttributeNS().
- */
- public function testSetAttributeNS()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DOMElement::removeAttributeNS
- * @todo Implement testRemoveAttributeNS().
- */
- public function testRemoveAttributeNS()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DOMElement::getAttributeNodeNS
- * @todo Implement testGetAttributeNodeNS().
- */
- public function testGetAttributeNodeNS()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DOMElement::setAttributeNodeNS
- * @todo Implement testSetAttributeNodeNS().
- */
- public function testSetAttributeNodeNS()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DOMElement::getElementsByTagNameNS
- * @todo Implement testGetElementsByTagNameNS().
- */
- public function testGetElementsByTagNameNS()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DOMElement::hasAttribute
- * @todo Implement testHasAttribute().
- */
- public function testHasAttribute()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DOMElement::hasAttributeNS
- * @todo Implement testHasAttributeNS().
- */
- public function testHasAttributeNS()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DOMElement::setIdAttribute
- * @todo Implement testSetIdAttribute().
- */
- public function testSetIdAttribute()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DOMElement::setIdAttributeNS
- * @todo Implement testSetIdAttributeNS().
- */
- public function testSetIdAttributeNS()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DOMElement::setIdAttributeNode
- * @todo Implement testSetIdAttributeNode().
- */
- public function testSetIdAttributeNode()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- }
|