Skip to content

Commit

Permalink
[Tests] Dropped providing fallback Test Kernel if not defined
Browse files Browse the repository at this point in the history
  • Loading branch information
alongosz committed Mar 5, 2024
1 parent fb5568b commit ad6bf76
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions src/contracts/IbexaKernelTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
namespace Ibexa\Contracts\Test\Core;

use Ibexa\Contracts\Core\Test\IbexaTestKernelInterface;
use LogicException;
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;

/**
Expand All @@ -19,15 +18,6 @@ abstract class IbexaKernelTestCase extends KernelTestCase
{
private IbexaTestCoreInterface $ibexaCore;

protected static function getKernelClass(): string
{
try {
return parent::getKernelClass();
} catch (LogicException $e) {
return IbexaTestKernel::class;
}
}

protected function getIbexaTestCore(): IbexaTestCoreInterface
{
if (!self::$booted) {
Expand Down

0 comments on commit ad6bf76

Please sign in to comment.