mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 15:57:21 +01:00
16 lines
280 B
PHP
16 lines
280 B
PHP
<?php
|
|
|
|
error_reporting(E_ALL);
|
|
|
|
test('deprecated', function () {
|
|
str_contains(null, null);
|
|
|
|
expect(true)->toBeTrue();
|
|
});
|
|
|
|
test('user deprecated', function () {
|
|
trigger_deprecation('foo', '1.0', 'This is a deprecation description');
|
|
|
|
expect(true)->toBeTrue();
|
|
});
|