mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-02 20:59:28 +00:00
28 lines
424 B
PHP
28 lines
424 B
PHP
<?php
|
|
require_once(dirname(__FILE__).'/../../../include/basis.class.php');
|
|
|
|
class ExampleTest extends \Codeception\TestCase\Test
|
|
{
|
|
/**
|
|
* @var \UnitTester
|
|
*/
|
|
protected $tester;
|
|
|
|
protected function _before()
|
|
{
|
|
}
|
|
|
|
protected function _after()
|
|
{
|
|
}
|
|
|
|
// tests
|
|
public function testMe()
|
|
{
|
|
$bc = new basis();
|
|
$bc->errormsg=true;
|
|
$this->assertTrue($bc->getErrorMsg());
|
|
}
|
|
|
|
}
|