IOP-Patho/vendor/codeception/base/tests/data/bundled_suites/BasicTest.php

15 lines
264 B
PHP
Raw Normal View History

2025-07-17 08:28:28 +00:00
<?php
class BasicTest extends \Codeception\Test\Unit
{
/**
* @var \UnitTester
*/
protected $tester;
// tests
public function testMe()
{
$this->tester->assertTrue(true);
$this->tester->comment('I am executed');
}
}