mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-23 15:09:37 +00:00
18 lines
223 B
PHP
18 lines
223 B
PHP
<?php
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class CI_TestCase extends TestCase
|
|
{
|
|
public $_ci;
|
|
|
|
public function setUp()
|
|
{
|
|
$this->_ci =& get_instance();
|
|
}
|
|
|
|
public function __get($name)
|
|
{
|
|
return $this->_ci->$name;
|
|
}
|
|
}
|