mirror of
https://github.com/pestphp/pest.git
synced 2026-07-25 11:00:02 +02:00
fix: package lock fingerprint
This commit is contained in:
@@ -1,19 +1,21 @@
|
||||
<?php
|
||||
|
||||
test('warning', function () {
|
||||
declare(strict_types=1);
|
||||
|
||||
test('warning', function (): void {
|
||||
$this->fooqwdfwqdfqw;
|
||||
|
||||
expect(true)->toBeTrue();
|
||||
});
|
||||
|
||||
test('user warning', function () {
|
||||
test('user warning', function (): void {
|
||||
trigger_error('This is a warning description', E_USER_WARNING);
|
||||
|
||||
expect(true)->toBeTrue();
|
||||
});
|
||||
|
||||
describe('a "describe" group of tests', function () {
|
||||
test('user warning', function () {
|
||||
describe('a "describe" group of tests', function (): void {
|
||||
test('user warning', function (): void {
|
||||
trigger_error('This is a warning description', E_USER_WARNING);
|
||||
|
||||
expect(true)->toBeTrue();
|
||||
|
||||
Reference in New Issue
Block a user