Your IP : 216.73.217.13


Current Path : /home/rtorresani/www/vendor/codeception/codeception/src/Codeception/
Upload File :
Current File : //home/rtorresani/www/vendor/codeception/codeception/src/Codeception/TestInterface.php

<?php

declare(strict_types=1);

namespace Codeception;

use Codeception\Test\Metadata;
use PHPUnit\Framework\Test;

interface TestInterface extends Test
{
    public function getMetadata(): Metadata;

    public function getResultAggregator(): ResultAggregator;
}