PHPUnit
PHPUnit TYPO3 extension
Public Member Functions | List of all members
Tx_Phpunit_Interface_AccessibleObject Interface Reference

Public Member Functions

 _call ($methodName)
 
 _callRef ($methodName, &$arg1=NULL, &$arg2=NULL, &$arg3=NULL, &$arg4=NULL, &$arg5=NULL, &$arg6=NULL, &$arg7=NULL, &$arg8=NULL, &$arg9=NULL)
 
 _set ($propertyName, $value)
 
 _setRef ($propertyName, &$value)
 
 _setStatic ($propertyName, $value)
 
 _get ($propertyName)
 
 _getStatic ($propertyName)
 

Member Function Documentation

Tx_Phpunit_Interface_AccessibleObject::_call (   $methodName)

Calls the method $method using call_user_func* and returns its return value.

Parameters
string$methodNamename of method to call, must not be empty
Returns
mixed the return value from the method $methodName
Tx_Phpunit_Interface_AccessibleObject::_callRef (   $methodName,
$arg1 = NULL,
$arg2 = NULL,
$arg3 = NULL,
$arg4 = NULL,
$arg5 = NULL,
$arg6 = NULL,
$arg7 = NULL,
$arg8 = NULL,
$arg9 = NULL 
)

Calls the method $method without using call_user_func* and returns its return value.

Parameters
string$methodNamename of method to call, must not be empty
mixed&$arg1first argument given to method $methodName
mixed&$arg2second argument given to method $methodName
mixed&$arg3third argument given to method $methodName
mixed&$arg4fourth argument given to method $methodName
mixed&$arg5fifth argument given to method $methodName
mixed&$arg6sixth argument given to method $methodName
mixed&$arg7seventh argument given to method $methodName
mixed&$arg8eighth argument given to method $methodName
mixed&$arg9ninth argument given to method $methodName
Returns
mixed the return value from the method $methodName
Tx_Phpunit_Interface_AccessibleObject::_get (   $propertyName)

Gets the value of the given property.

Parameters
string$propertyNamename of property to return value of, must not be empty
Returns
mixed the value of the property $propertyName
Tx_Phpunit_Interface_AccessibleObject::_getStatic (   $propertyName)

Gets the value of the given static property.

Parameters
string$propertyNamename of property to return value of, must not be empty
Returns
mixed the value of the static property $propertyName
Tx_Phpunit_Interface_AccessibleObject::_set (   $propertyName,
  $value 
)

Sets the value of a property.

Parameters
string$propertyNamename of property to set value for, must not be empty
mixed$valuethe new value for the property defined in $propertyName
Returns
void
Tx_Phpunit_Interface_AccessibleObject::_setRef (   $propertyName,
$value 
)

Sets the value of a property by reference.

Parameters
string$propertyNamename of property to set value for, must not be empty
mixed&$valuethe new value for the property defined in $propertyName
Returns
void
Tx_Phpunit_Interface_AccessibleObject::_setStatic (   $propertyName,
  $value 
)

Sets the value of a static property.

Parameters
string$propertyNamename of property to set value for, must not be empty
mixed$valuethe new value for the property defined in $propertyName
Returns
void

The documentation for this interface was generated from the following file: