15 lines
264 B
PHP
15 lines
264 B
PHP
|
|
<?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');
|
||
|
|
}
|
||
|
|
}
|