Skip to content

Commit

Permalink
[Tests] Dropped providing fallback Test Kernel if not defined (#10)
Browse files Browse the repository at this point in the history
For more details see #10
  • Loading branch information
alongosz authored May 6, 2024
1 parent 8f38489 commit ee988aa
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 ee988aa

Please sign in to comment.