Your IP : 216.73.216.220


Current Path : /var/www/html/vendor/codeception/phpunit-wrapper/src/
Upload File :
Current File : /var/www/html/vendor/codeception/phpunit-wrapper/src/phpunit7-interfaces.php

<?php
// @codingStandardsIgnoreStart
// PHPUnit 6 compatibility

namespace PHPUnit\Framework {
    if (!interface_exists(Test::class, false)) {
        interface Test extends \Countable {
            public function run(TestResult $result = null);
        }

    }
    if (!interface_exists(SelfDescribing::class, false)) {
        interface SelfDescribing
        {
            public function toString();
        }
    }

}
// @codingStandardsIgnoreEnd