Quellcode durchsuchen

ZF-11579: Backported r24289 to trunk

add in missing test class

- Added ViewRenderer extension needed for fix

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@24290 44c647ce-9c0f-0410-b52a-842ac1e357ba
matthew vor 14 Jahren
Ursprung
Commit
0a6400ec0f
1 geänderte Dateien mit 35 neuen und 0 gelöschten Zeilen
  1. 35 0
      tests/Zend/Application/Resource/TestAsset/ViewRenderer.php

+ 35 - 0
tests/Zend/Application/Resource/TestAsset/ViewRenderer.php

@@ -0,0 +1,35 @@
+<?php
+/**
+ * Zend Framework
+ *
+ * LICENSE
+ *
+ * This source file is subject to the new BSD license that is bundled
+ * with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://framework.zend.com/license/new-bsd
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to license@zend.com so we can send you a copy immediately.
+ *
+ * @category   Zend
+ * @package    Zend_Application
+ * @subpackage UnitTests
+ * @copyright  Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license    http://framework.zend.com/license/new-bsd     New BSD License
+ * @version    $Id$
+ */
+
+require_once 'Zend/Controller/Action/Helper/ViewRenderer.php';
+
+/**
+ * @category   Zend
+ * @package    Zend_Application
+ * @subpackage UnitTests
+ * @copyright  Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license    http://framework.zend.com/license/new-bsd     New BSD License
+ */
+class Zend_Application_Resource_TestAsset_ViewRenderer 
+    extends Zend_Controller_Action_Helper_ViewRenderer
+{
+}