* @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2 * @author Icinga Development Team */ // {{{ICINGA_LICENSE_HEADER}}} namespace Tests\Icinga\Web; require_once('Zend/View/Abstract.php'); use \Zend_View_Abstract; /** * ViewMock that does absolutely nothing * */ class ViewMock extends Zend_View_Abstract { /** * No operation is performed here */ protected function _run() { } }