BasicTest.php 264 B

123456789101112131415
  1. <?php
  2. class BasicTest extends \Codeception\Test\Unit
  3. {
  4. /**
  5. * @var \UnitTester
  6. */
  7. protected $tester;
  8. // tests
  9. public function testMe()
  10. {
  11. $this->tester->assertTrue(true);
  12. $this->tester->comment('I am executed');
  13. }
  14. }