mirror of
https://github.com/pestphp/pest.git
synced 2026-07-21 17:10:03 +02:00
16 lines
304 B
PHP
16 lines
304 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
test('deprecated', function (): void {
|
|
str_contains('', '');
|
|
|
|
expect(true)->toBeTrue();
|
|
});
|
|
|
|
test('user deprecated', function (): void {
|
|
trigger_error('Since foo 1.0: This is a deprecation description', \E_USER_DEPRECATED);
|
|
|
|
expect(true)->toBeTrue();
|
|
});
|