Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
zavitkov committed Nov 18, 2024
1 parent b8c8179 commit 962401d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Tests/Unit/DependencyInjection/EnqueueExtensionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,21 @@
use Enqueue\Test\ClassExtensionTrait;
use PHPUnit\Framework\TestCase;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Extension\Extension;
use Symfony\Component\DependencyInjection\Reference;
use Symfony\Component\HttpKernel\DependencyInjection\Extension;

class EnqueueExtensionTest extends TestCase
{
use ClassExtensionTrait;

public function testShouldImplementConfigurationInterface()
{
self::assertClassExtends(Extension::class, EnqueueExtension::class);
$this->assertClassExtends(Extension::class, EnqueueExtension::class);
}

public function testShouldBeFinal()
{
self::assertClassFinal(EnqueueExtension::class);
$this->assertClassFinal(EnqueueExtension::class);
}

public function testCouldBeConstructedWithoutAnyArguments()
Expand Down

0 comments on commit 962401d

Please sign in to comment.