123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412 |
- <?php
- /**
- * Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:46.
- */
- class DOMDocumentTest extends PHPUnit_Framework_TestCase
- {
- /**
- * @var DOMDocument
- */
- 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 DOMDocument;
- }
- /**
- * Tears down the fixture, for example, closes a network connection.
- * This method is called after a test is executed.
- */
- protected function tearDown()
- {
- }
- /**
- * @covers DOMDocument::createElement
- * @todo Implement testCreateElement().
- */
- public function testCreateElement()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DOMDocument::createDocumentFragment
- * @todo Implement testCreateDocumentFragment().
- */
- public function testCreateDocumentFragment()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DOMDocument::createTextNode
- * @todo Implement testCreateTextNode().
- */
- public function testCreateTextNode()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DOMDocument::createComment
- * @todo Implement testCreateComment().
- */
- public function testCreateComment()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DOMDocument::createCDATASection
- * @todo Implement testCreateCDATASection().
- */
- public function testCreateCDATASection()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DOMDocument::createProcessingInstruction
- * @todo Implement testCreateProcessingInstruction().
- */
- public function testCreateProcessingInstruction()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DOMDocument::createAttribute
- * @todo Implement testCreateAttribute().
- */
- public function testCreateAttribute()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DOMDocument::createEntityReference
- * @todo Implement testCreateEntityReference().
- */
- public function testCreateEntityReference()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DOMDocument::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 DOMDocument::importNode
- * @todo Implement testImportNode().
- */
- public function testImportNode()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DOMDocument::createElementNS
- * @todo Implement testCreateElementNS().
- */
- public function testCreateElementNS()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DOMDocument::createAttributeNS
- * @todo Implement testCreateAttributeNS().
- */
- public function testCreateAttributeNS()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DOMDocument::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 DOMDocument::getElementById
- * @todo Implement testGetElementById().
- */
- public function testGetElementById()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DOMDocument::adoptNode
- * @todo Implement testAdoptNode().
- */
- public function testAdoptNode()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DOMDocument::normalizeDocument
- * @todo Implement testNormalizeDocument().
- */
- public function testNormalizeDocument()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DOMDocument::renameNode
- * @todo Implement testRenameNode().
- */
- public function testRenameNode()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DOMDocument::load
- * @todo Implement testLoad().
- */
- public function testLoad()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DOMDocument::save
- * @todo Implement testSave().
- */
- public function testSave()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DOMDocument::loadXML
- * @todo Implement testLoadXML().
- */
- public function testLoadXML()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DOMDocument::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 DOMDocument::validate
- * @todo Implement testValidate().
- */
- public function testValidate()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DOMDocument::xinclude
- * @todo Implement testXinclude().
- */
- public function testXinclude()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DOMDocument::loadHTML
- * @todo Implement testLoadHTML().
- */
- public function testLoadHTML()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DOMDocument::loadHTMLFile
- * @todo Implement testLoadHTMLFile().
- */
- public function testLoadHTMLFile()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DOMDocument::saveHTML
- * @todo Implement testSaveHTML().
- */
- public function testSaveHTML()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DOMDocument::saveHTMLFile
- * @todo Implement testSaveHTMLFile().
- */
- public function testSaveHTMLFile()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DOMDocument::schemaValidate
- * @todo Implement testSchemaValidate().
- */
- public function testSchemaValidate()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DOMDocument::schemaValidateSource
- * @todo Implement testSchemaValidateSource().
- */
- public function testSchemaValidateSource()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DOMDocument::relaxNGValidate
- * @todo Implement testRelaxNGValidate().
- */
- public function testRelaxNGValidate()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DOMDocument::relaxNGValidateSource
- * @todo Implement testRelaxNGValidateSource().
- */
- public function testRelaxNGValidateSource()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers DOMDocument::registerNodeClass
- * @todo Implement testRegisterNodeClass().
- */
- public function testRegisterNodeClass()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- }
|