mirror of
https://github.com/pestphp/pest.git
synced 2026-03-05 23:37:22 +01:00
22 lines
450 B
PHP
22 lines
450 B
PHP
<?php
|
|
|
|
test('warning', function () {
|
|
$this->fooqwdfwqdfqw;
|
|
|
|
expect(true)->toBeTrue();
|
|
});
|
|
|
|
test('user warning', function () {
|
|
trigger_error('This is a warning description', E_USER_WARNING);
|
|
|
|
expect(true)->toBeTrue();
|
|
});
|
|
|
|
describe('a "describe" group of tests', function () {
|
|
test('user warning', function () {
|
|
trigger_error('This is a warning description', E_USER_WARNING);
|
|
|
|
expect(true)->toBeTrue();
|
|
});
|
|
});
|