CI_Unit_test::use_strict PHP Method

use_strict() public method

Causes the evaluation to use === rather than ==
public use_strict ( boolean $state = TRUE ) : void
$state boolean
return void
    public function use_strict($state = TRUE)
    {
        $this->strict = (bool) $state;
    }