phpC(d)I III

This commit is contained in:
bison-paolo
2016-09-30 10:48:52 +02:00
parent 24b18db39c
commit 240d87caaa
4 changed files with 0 additions and 0 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());
}
}