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.
232 lines
6.2 KiB
232 lines
6.2 KiB
<?php
|
|
/**
|
|
* Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:53.
|
|
*/
|
|
class ReflectionParameterTest extends PHPUnit_Framework_TestCase
|
|
{
|
|
/**
|
|
* @var ReflectionParameter
|
|
*/
|
|
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 ReflectionParameter;
|
|
}
|
|
|
|
/**
|
|
* Tears down the fixture, for example, closes a network connection.
|
|
* This method is called after a test is executed.
|
|
*/
|
|
protected function tearDown()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @covers ReflectionParameter::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 ReflectionParameter::__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 ReflectionParameter::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 ReflectionParameter::isPassedByReference
|
|
* @todo Implement testIsPassedByReference().
|
|
*/
|
|
public function testIsPassedByReference()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers ReflectionParameter::canBePassedByValue
|
|
* @todo Implement testCanBePassedByValue().
|
|
*/
|
|
public function testCanBePassedByValue()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers ReflectionParameter::getDeclaringFunction
|
|
* @todo Implement testGetDeclaringFunction().
|
|
*/
|
|
public function testGetDeclaringFunction()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers ReflectionParameter::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 ReflectionParameter::getClass
|
|
* @todo Implement testGetClass().
|
|
*/
|
|
public function testGetClass()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers ReflectionParameter::isArray
|
|
* @todo Implement testIsArray().
|
|
*/
|
|
public function testIsArray()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers ReflectionParameter::isCallable
|
|
* @todo Implement testIsCallable().
|
|
*/
|
|
public function testIsCallable()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers ReflectionParameter::allowsNull
|
|
* @todo Implement testAllowsNull().
|
|
*/
|
|
public function testAllowsNull()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers ReflectionParameter::getPosition
|
|
* @todo Implement testGetPosition().
|
|
*/
|
|
public function testGetPosition()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers ReflectionParameter::isOptional
|
|
* @todo Implement testIsOptional().
|
|
*/
|
|
public function testIsOptional()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers ReflectionParameter::isDefaultValueAvailable
|
|
* @todo Implement testIsDefaultValueAvailable().
|
|
*/
|
|
public function testIsDefaultValueAvailable()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers ReflectionParameter::getDefaultValue
|
|
* @todo Implement testGetDefaultValue().
|
|
*/
|
|
public function testGetDefaultValue()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers ReflectionParameter::isDefaultValueConstant
|
|
* @todo Implement testIsDefaultValueConstant().
|
|
*/
|
|
public function testIsDefaultValueConstant()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @covers ReflectionParameter::getDefaultValueConstantName
|
|
* @todo Implement testGetDefaultValueConstantName().
|
|
*/
|
|
public function testGetDefaultValueConstantName()
|
|
{
|
|
// Remove the following lines when you implement this test.
|
|
$this->markTestIncomplete(
|
|
'This test has not been implemented yet.'
|
|
);
|
|
}
|
|
}
|
|
|