lithium\tests\cases\analysis\LoggerTest::skip PHP Method

skip() public method

public skip ( )
    public function skip()
    {
        $path = Libraries::get(true, 'resources');
        if (is_writable($path)) {
            foreach (array("{$path}/tmp/tests", "{$path}/tmp/logs") as $dir) {
                if (!is_dir($dir)) {
                    mkdir($dir, 0777, true);
                }
            }
        }
        $this->_testPath = "{$path}/tmp/tests";
        $this->skipIf(!is_writable($this->_testPath), "Path `{$this->_testPath}` is not writable.");
    }