Sfoglia il codice sorgente

ZF-6502: add missing test file

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@15514 44c647ce-9c0f-0410-b52a-842ac1e357ba
matthew 16 anni fa
parent
commit
073cb329b0

+ 14 - 0
tests/Zend/Application/_files/modules/foo-bar/Bootstrap.php

@@ -0,0 +1,14 @@
+<?php
+class FooBar_Bootstrap extends Zend_Application_Module_Bootstrap
+{
+    public $bootstrapped = false;
+
+    public function run()
+    {
+    }
+
+    protected function _bootstrap($resource = null)
+    {
+        $this->bootstrapped = true;
+    }
+}