mirror of
https://github.com/pestphp/pest.git
synced 2026-07-21 17:10:03 +02:00
18 lines
386 B
PHP
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();
|
|
});
|
|
});
|