In a function that I want to test I have the following check
if (!is_callable(array($object, $methodName))) {
throw new \InvalidArgumentException(
sprintf(
'Unable to call method %s::%s() on object $%s',
get_class($object),
$methodName,
$objectName
)
);
}
How can I test the exception ?
How can I make a MOCKERY object containing a method that is not callable or is maybe a property ? I am not sure.
You could simply instanciate a empty
StdClass
object.