CodeIgniterUnitTestCase::__construct PHP Method

__construct() public method

public __construct ( )
        public function __construct()
        {
            parent::UnitTestCase();
            $this->_ci = CI_Base::get_instance();
        }

Usage Example

 public function __construct()
 {
     parent::__construct();
     $this->UnitTestCase('Users Model');
     $this->_ci->load->model('users/users_model');
     $this->rand = rand(500, 15000);
 }
All Usage Examples Of CodeIgniterUnitTestCase::__construct
CodeIgniterUnitTestCase