IOP-Patho/vendor/codeception/base/tests/unit/Codeception/Test/UnitTest.php

15 lines
384 B
PHP
Raw Normal View History

2025-07-17 08:28:28 +00:00
<?php
class TestTest extends \Codeception\Test\Unit
{
public function testReportedInterface()
{
$this->assertInstanceOf('\\Codeception\\Test\\Interfaces\\Reported', $this);
$this->assertEquals(array(
'file' => __FILE__,
'name' => 'testReportedInterface',
'class' => 'TestTest'
), $this->getReportFields());
}
}