Bolt\Tests\Configuration\Validation\SafeModeTest::testSafeModeEnabled PHP Метод

testSafeModeEnabled() публичный Метод

public testSafeModeEnabled ( )
    public function testSafeModeEnabled()
    {
        $this->extensionController->systemCheck(Validator::CHECK_SAFE_MODE)->shouldBeCalled();
        $this->_validation->expects($this->once())->method('ini_get')->will($this->returnValue(true));
        $this->validator->check(Validator::CHECK_SAFE_MODE);
    }