Pickle\tests\units\Engine\PHP\Ini::test__construct PHP Method

test__construct() public method

public test__construct ( )
    public function test__construct()
    {
        $php = $this->getEngineMock("");
        $this->assert->exception(function () use($php) {
            new \Pickle\Engine\PHP\Ini($php);
        });
        $php = $this->getEngineMock(FIXTURES_DIR . DIRECTORY_SEPARATOR . "ini" . DIRECTORY_SEPARATOR . "php.ini.empty");
        $this->object(new \Pickle\Engine\PHP\Ini($php))->isInstanceOf("\\Pickle\\Engine\\PHP\\Ini");
    }