Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chamilo-lms/tests/phpunit/classes/DOMDocumentTest.class.php

412 lines
11 KiB

<?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.'
);
}
}