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 c27ad78 commit 60ff029
Showing 1 changed file with 3 additions and 3 deletions.
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 60ff029

Please sign in to comment.