Files
pest/tests/Features/Notices.php
T
2026-07-18 01:10:01 +01:00

18 lines
386 B
PHP

<?php
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 (): void {
test('notice', function (): void {
trigger_error('This is a notice description', E_USER_NOTICE);
expect(true)->toBeTrue();
});
});