feat: uses()hint

This commit is contained in:
Nuno Maduro
2023-03-28 01:48:46 +01:00
parent 5df46d03c3
commit e109cd1da2
4 changed files with 35 additions and 4 deletions

View File

@ -5,6 +5,7 @@ declare(strict_types=1);
namespace Pest\Support;
use Closure;
use PHPUnit\Framework\TestCase;
use Throwable;
/**
@ -15,8 +16,7 @@ final class ExceptionTrace
private const UNDEFINED_METHOD = 'Call to undefined method P\\';
/**
* Ensures the given closure reports
* the good execution context.
* Ensures the given closure reports the good execution context.
*
* @return mixed
*
@ -28,8 +28,14 @@ final class ExceptionTrace
return $closure();
} catch (Throwable $throwable) {
if (Str::startsWith($message = $throwable->getMessage(), self::UNDEFINED_METHOD)) {
$class = preg_match('/^Call to undefined method ([^:]+)::/', $message, $matches) === false ? null : $matches[1];
$message = str_replace(self::UNDEFINED_METHOD, 'Call to undefined method ', $message);
if (class_exists($class) && count(class_parents($class)) > 0 && array_values(class_parents($class))[0] === TestCase::class) {
$message .= '. Did you forget to use the [uses()] function? https://pestphp.com/docs/configuring-tests';
}
Reflection::setPropertyValue($throwable, 'message', $message);
}