123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- <?php
- class DOMNamedNodeMapTest extends PHPUnit_Framework_TestCase
- {
-
- protected $object;
-
- protected function setUp()
- {
- $this->object = new DOMNamedNodeMap;
- }
-
- protected function tearDown()
- {
- }
-
- public function testGetNamedItem()
- {
-
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
-
- public function testSetNamedItem()
- {
-
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
-
- public function testRemoveNamedItem()
- {
-
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
-
- public function testItem()
- {
-
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
-
- public function testGetNamedItemNS()
- {
-
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
-
- public function testSetNamedItemNS()
- {
-
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
-
- public function testRemoveNamedItemNS()
- {
-
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- }
|