浏览代码

fixed tests

Fabien Potencier 14 年之前
父节点
当前提交
38fa4e65dc

+ 4 - 0
src/Symfony/Bundle/SecurityBundle/Tests/Functional/app/AppKernel.php

@@ -50,6 +50,10 @@ class AppKernel extends Kernel
         return include $filename;
     }
 
+    public function init()
+    {
+    }
+
     public function getRootDir()
     {
         return __DIR__;

+ 4 - 0
tests/Symfony/Tests/Component/HttpKernel/DataCollector/ConfigDataCollectorTest.php

@@ -64,6 +64,10 @@ class KernelForTest extends Kernel
     {
     }
 
+    public function init()
+    {
+    }
+
     public function getBundles()
     {
         return array();

+ 4 - 0
tests/Symfony/Tests/Component/HttpKernel/KernelTest.php

@@ -718,6 +718,10 @@ class KernelForTest extends Kernel
     {
     }
 
+    public function init()
+    {
+    }
+
     public function registerBundleDirs()
     {
     }