fix: package lock fingerprint

This commit is contained in:
nuno maduro
2026-07-18 01:10:01 +01:00
parent 9e79e491e2
commit 820fa08313
237 changed files with 2409 additions and 2100 deletions
+24 -28
View File
@@ -1,95 +1,91 @@
<?php
it('gives access the the underlying expectException', function () {
it('gives access the the underlying expectException', function (): void {
$this->expectException(InvalidArgumentException::class);
throw new InvalidArgumentException;
});
it('catch exceptions', function () {
it('catch exceptions', function (): void {
throw new Exception('Something bad happened');
})->throws(Exception::class);
it('catch exceptions and messages', function () {
it('catch exceptions and messages', function (): void {
throw new Exception('Something bad happened');
})->throws(Exception::class, 'Something bad happened');
it('catch exceptions, messages and code', function () {
it('catch exceptions, messages and code', function (): void {
throw new Exception('Something bad happened', 1);
})->throws(Exception::class, 'Something bad happened', 1);
it('can just define the message', function () {
it('can just define the message', function (): void {
throw new Exception('Something bad happened');
})->throws('Something bad happened');
it('can just define the code', function () {
it('can just define the code', function (): void {
throw new Exception('Something bad happened', 1);
})->throws(1);
it('not catch exceptions if given condition is false', function () {
it('not catch exceptions if given condition is false', function (): void {
$this->assertTrue(true);
})->throwsIf(false, Exception::class);
it('catch exceptions if given condition is true', function () {
it('catch exceptions if given condition is true', function (): void {
throw new Exception('Something bad happened');
})->throwsIf(function () {
return true;
}, Exception::class);
})->throwsIf(fn (): true => true, Exception::class);
it('catch exceptions and messages if given condition is true', function () {
it('catch exceptions and messages if given condition is true', function (): void {
throw new Exception('Something bad happened');
})->throwsIf(true, Exception::class, 'Something bad happened');
it('catch exceptions, messages and code if given condition is true', function () {
it('catch exceptions, messages and code if given condition is true', function (): void {
throw new Exception('Something bad happened', 1);
})->throwsIf(true, Exception::class, 'Something bad happened', 1);
it('can just define the message if given condition is true', function () {
it('can just define the message if given condition is true', function (): void {
throw new Exception('Something bad happened');
})->throwsIf(true, 'Something bad happened');
it('can just define the code if given condition is true', function () {
it('can just define the code if given condition is true', function (): void {
throw new Exception('Something bad happened', 1);
})->throwsIf(true, 1);
it('can just define the message if given condition is 1', function () {
it('can just define the message if given condition is 1', function (): void {
throw new Exception('Something bad happened');
})->throwsIf(1, 'Something bad happened');
it('can just define the code if given condition is 1', function () {
it('can just define the code if given condition is 1', function (): void {
throw new Exception('Something bad happened', 1);
})->throwsIf(1, 1);
it('not catch exceptions if given condition is true', function () {
it('not catch exceptions if given condition is true', function (): void {
$this->assertTrue(true);
})->throwsUnless(true, Exception::class);
it('catch exceptions if given condition is false', function () {
it('catch exceptions if given condition is false', function (): void {
throw new Exception('Something bad happened');
})->throwsUnless(function () {
return false;
}, Exception::class);
})->throwsUnless(fn (): false => false, Exception::class);
it('catch exceptions and messages if given condition is false', function () {
it('catch exceptions and messages if given condition is false', function (): void {
throw new Exception('Something bad happened');
})->throwsUnless(false, Exception::class, 'Something bad happened');
it('catch exceptions, messages and code if given condition is false', function () {
it('catch exceptions, messages and code if given condition is false', function (): void {
throw new Exception('Something bad happened', 1);
})->throwsUnless(false, Exception::class, 'Something bad happened', 1);
it('can just define the message if given condition is false', function () {
it('can just define the message if given condition is false', function (): void {
throw new Exception('Something bad happened');
})->throwsUnless(false, 'Something bad happened');
it('can just define the code if given condition is false', function () {
it('can just define the code if given condition is false', function (): void {
throw new Exception('Something bad happened', 1);
})->throwsUnless(false, 1);
it('can just define the message if given condition is 0', function () {
it('can just define the message if given condition is 0', function (): void {
throw new Exception('Something bad happened');
})->throwsUnless(0, 'Something bad happened');
it('can just define the code if given condition is 0', function () {
it('can just define the code if given condition is 0', function (): void {
throw new Exception('Something bad happened', 1);
})->throwsUnless(0, 1);