IMMREX7

aku nok ndi : /home/spdtg/www/schoolmis/vendor/doctrine/deprecations/tests/
File Up :
aku nok ndi : /home/spdtg/www/schoolmis/vendor/doctrine/deprecations/tests/VerifyDeprecationsTest.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 (): bool {
            return false;
        });
    }

    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');
    }
}

Copyright © 2021 - 2025 IMMREX7