recorder->isActive()) { return; } $test = $event->test(); if (! $test instanceof TestMethod) { return; } $className = $test->className(); if (! class_exists($className, false)) { return; } if (method_exists($className, '__initializeTestCase')) { return; } Panic::with(new TiaRequiresPestTests($className, $test->file())); } }