mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 07:47:22 +01:00
14 lines
270 B
PHP
14 lines
270 B
PHP
<?php
|
|
|
|
test('deprecated', function () {
|
|
str_contains(null, null);
|
|
|
|
expect(true)->toBeTrue();
|
|
});
|
|
|
|
test('user deprecated', function () {
|
|
trigger_error('Since foo 1.0: This is a deprecation description', \E_USER_DEPRECATED);
|
|
|
|
expect(true)->toBeTrue();
|
|
});
|