mirror of
https://github.com/pestphp/pest.git
synced 2026-07-24 18:40:03 +02:00
fix: package lock fingerprint
This commit is contained in:
@@ -1,13 +1,15 @@
|
||||
<?php
|
||||
|
||||
test('notice', function () {
|
||||
declare(strict_types=1);
|
||||
|
||||
test('notice', function (): void {
|
||||
trigger_error('This is a notice description', E_USER_NOTICE);
|
||||
|
||||
expect(true)->toBeTrue();
|
||||
});
|
||||
|
||||
describe('a "describe" group of tests', function () {
|
||||
test('notice', function () {
|
||||
describe('a "describe" group of tests', function (): void {
|
||||
test('notice', function (): void {
|
||||
trigger_error('This is a notice description', E_USER_NOTICE);
|
||||
|
||||
expect(true)->toBeTrue();
|
||||
|
||||
Reference in New Issue
Block a user