This commit is contained in:
kindlm
2016-09-30 16:32:57 +02:00
parent 059b8d19cb
commit 70fd4a4dea
16 changed files with 50 additions and 45 deletions
@@ -0,0 +1,27 @@
<?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());
}
}