Release 3.8.6

This commit is contained in:
nuno maduro
2026-03-10 21:03:11 +00:00
parent 7796630eaf
commit e4b6fc08b6
35 changed files with 91 additions and 53 deletions

View File

@ -39,7 +39,7 @@ it('allows to call underlying protected/private methods', function () {
it('throws error if method do not exist', function () {
test()->foo();
})->throws(\ReflectionException::class, 'Call to undefined method PHPUnit\Framework\TestCase::foo()');
})->throws(ReflectionException::class, 'Call to undefined method PHPUnit\Framework\TestCase::foo()');
it('can forward unexpected calls to any global function')->_assertThat();