TestInterface.php 198 B

12345678910111213
  1. <?php
  2. namespace Codeception;
  3. use Codeception\Test\Metadata;
  4. interface TestInterface extends \PHPUnit\Framework\Test
  5. {
  6. /**
  7. * @return Metadata
  8. */
  9. public function getMetadata();
  10. }