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

184 lines
4.7 KiB

<?php
/**
* Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:54.
*/
class SimpleXMLElementTest extends PHPUnit_Framework_TestCase
{
/**
* @var SimpleXMLElement
*/
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 SimpleXMLElement;
}
/**
* Tears down the fixture, for example, closes a network connection.
* This method is called after a test is executed.
*/
protected function tearDown()
{
}
/**
* @covers SimpleXMLElement::asXML
* @todo Implement testAsXML().
*/
public function testAsXML()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers SimpleXMLElement::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 SimpleXMLElement::xpath
* @todo Implement testXpath().
*/
public function testXpath()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers SimpleXMLElement::registerXPathNamespace
* @todo Implement testRegisterXPathNamespace().
*/
public function testRegisterXPathNamespace()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers SimpleXMLElement::attributes
* @todo Implement testAttributes().
*/
public function testAttributes()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers SimpleXMLElement::children
* @todo Implement testChildren().
*/
public function testChildren()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers SimpleXMLElement::getNamespaces
* @todo Implement testGetNamespaces().
*/
public function testGetNamespaces()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers SimpleXMLElement::getDocNamespaces
* @todo Implement testGetDocNamespaces().
*/
public function testGetDocNamespaces()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers SimpleXMLElement::getName
* @todo Implement testGetName().
*/
public function testGetName()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers SimpleXMLElement::addChild
* @todo Implement testAddChild().
*/
public function testAddChild()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers SimpleXMLElement::addAttribute
* @todo Implement testAddAttribute().
*/
public function testAddAttribute()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers SimpleXMLElement::__toString
* @todo Implement test__toString().
*/
public function test__toString()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers SimpleXMLElement::count
* @todo Implement testCount().
*/
public function testCount()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
}