You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (!is_dir($dir) && is_dir("$phpUnitDir/$dir")) {
109
+
$dir = "$phpUnitDir/$dir";
110
+
}
111
+
}
104
112
105
113
$finder = newFinder();
106
114
$finder->name('*Kernel.php')->depth(0)->in($dir);
107
115
$results = iterator_to_array($finder);
108
116
if (!count($results)) {
109
-
thrownew \RuntimeException('Either set KERNEL_DIR in your phpunit.xml according to http://symfony.com/doc/current/book/testing.html#your-first-functional-test or override the WebTestCase::createKernel() method.');
117
+
thrownew \RuntimeException('Either set KERNEL_DIR in your phpunit.xml according to http://symfony.com/doc/current/book/testing.html#your-first-functional-test or override the KernelTestCase::createKernel() method.');
0 commit comments