Files
pest/tests/Features/Notices.php
2023-03-02 20:37:18 +00:00

8 lines
137 B
PHP

<?php
test('notice', function () {
trigger_error('This is a notice description', E_USER_NOTICE);
expect(true)->toBeTrue();
});