Subclasses should use this method to set conditions that, if failed, terminate further testing.
For example: {{{ public function skip() { $this->_dbConfig = Connections::get('default', array('config' => true)); $hasDb = (isset($this->_dbConfig['adapter']) && $this->_dbConfig['adapter'] == 'MySql'); $message = 'Test database is either unavailable, or not using a MySQL adapter'; $this->skipIf(!$hasDb, $message); } }}}

Returns

void

Source

						public function skip() {}