UnitTest.php 384 B

123456789101112131415
  1. <?php
  2. class TestTest extends \Codeception\Test\Unit
  3. {
  4. public function testReportedInterface()
  5. {
  6. $this->assertInstanceOf('\\Codeception\\Test\\Interfaces\\Reported', $this);
  7. $this->assertEquals(array(
  8. 'file' => __FILE__,
  9. 'name' => 'testReportedInterface',
  10. 'class' => 'TestTest'
  11. ), $this->getReportFields());
  12. }
  13. }