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/DOMElementTest.class.php

244 lines
6.4 KiB

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