mirror of
https://github.com/pestphp/pest.git
synced 2026-03-10 01:37:21 +01:00
feat: adds snapshot testing
This commit is contained in:
@ -305,6 +305,14 @@ final class Expectation
|
||||
return $pendingArchExpectation->$method(...$parameters); // @phpstan-ignore-line
|
||||
}
|
||||
|
||||
if (! is_object($this->value)) {
|
||||
throw new BadMethodCallException(sprintf(
|
||||
'Method "%s" does not exist in %s.',
|
||||
$method,
|
||||
gettype($this->value)
|
||||
));
|
||||
}
|
||||
|
||||
/* @phpstan-ignore-next-line */
|
||||
return new HigherOrderExpectation($this, call_user_func_array($this->value->$method(...), $parameters));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user