mirror of
https://github.com/zoe-may/TDoG-Skin.git
synced 2024-11-24 22:02:22 +08:00
36 lines
842 B
PHP
36 lines
842 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace Doctrine\Deprecations;
|
||
|
|
||
|
use Doctrine\Deprecations\PHPUnit\VerifyDeprecations;
|
||
|
use PHPUnit\Framework\TestCase;
|
||
|
|
||
|
use function set_error_handler;
|
||
|
|
||
|
class VerifyDeprecationsTest extends TestCase
|
||
|
{
|
||
|
use VerifyDeprecations;
|
||
|
|
||
|
public function setUp(): void
|
||
|
{
|
||
|
set_error_handler(static function (): void {
|
||
|
});
|
||
|
}
|
||
|
|
||
|
public function testExpectDeprecationWithIdentifier(): void
|
||
|
{
|
||
|
$this->expectDeprecationWithIdentifier('http://example.com');
|
||
|
|
||
|
Deprecation::trigger('doctrine/dbal', 'http://example.com', 'message');
|
||
|
}
|
||
|
|
||
|
public function testExpectNoDeprecationWithIdentifier(): void
|
||
|
{
|
||
|
$this->expectNoDeprecationWithIdentifier('http://example.com');
|
||
|
|
||
|
Deprecation::trigger('doctrine/dbal', 'http://otherexample.com', 'message');
|
||
|
}
|
||
|
}
|