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/ReflectionPropertyTest.clas...

196 lines
5.0 KiB

<?php
/**
* Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:53.
*/
class ReflectionPropertyTest extends PHPUnit_Framework_TestCase
{
/**
* @var ReflectionProperty
*/
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 ReflectionProperty;
}
/**
* Tears down the fixture, for example, closes a network connection.
* This method is called after a test is executed.
*/
protected function tearDown()
{
}
/**
* @covers ReflectionProperty::export
* @todo Implement testExport().
*/
public function testExport()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers ReflectionProperty::__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 ReflectionProperty::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 ReflectionProperty::getValue
* @todo Implement testGetValue().
*/
public function testGetValue()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers ReflectionProperty::setValue
* @todo Implement testSetValue().
*/
public function testSetValue()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers ReflectionProperty::isPublic
* @todo Implement testIsPublic().
*/
public function testIsPublic()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers ReflectionProperty::isPrivate
* @todo Implement testIsPrivate().
*/
public function testIsPrivate()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers ReflectionProperty::isProtected
* @todo Implement testIsProtected().
*/
public function testIsProtected()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers ReflectionProperty::isStatic
* @todo Implement testIsStatic().
*/
public function testIsStatic()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers ReflectionProperty::isDefault
* @todo Implement testIsDefault().
*/
public function testIsDefault()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers ReflectionProperty::getModifiers
* @todo Implement testGetModifiers().
*/
public function testGetModifiers()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers ReflectionProperty::getDeclaringClass
* @todo Implement testGetDeclaringClass().
*/
public function testGetDeclaringClass()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers ReflectionProperty::getDocComment
* @todo Implement testGetDocComment().
*/
public function testGetDocComment()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers ReflectionProperty::setAccessible
* @todo Implement testSetAccessible().
*/
public function testSetAccessible()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
}