Files
FHC-Core/tests/codeception/unit/BasisKlasseTest.php
T
2015-02-20 13:01:35 +01:00

28 lines
402 B
PHP

<?php
require_once('../../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());
}
}