Skip to content

Commit

Permalink
Sortable test
Browse files Browse the repository at this point in the history
  • Loading branch information
TomHAnderson committed Oct 29, 2024
1 parent 8ed9c76 commit db5b781
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions tests/Feature/Sortable/SortableExtensionTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?php

declare(strict_types=1);

namespace LaravelDoctrineTest\Extensions\Feature\Sortable;

use LaravelDoctrine\Extensions\Sortable\SortableExtension;
use LaravelDoctrine\Extensions\Timestamps\TimestampableExtension;

Check failure on line 8 in tests/Feature/Sortable/SortableExtensionTest.php

View workflow job for this annotation

GitHub Actions / Coding Standards / Coding Standards (8.2)

Type LaravelDoctrine\Extensions\Timestamps\TimestampableExtension is not used in this file.
use LaravelDoctrineTest\Extensions\Feature\TestCase;

class SortableExtensionTest extends TestCase
{
public function testCanRegisterExtension(): void
{
$extension = new SortableExtension();

$extension->addSubscribers(
$this->evm,
$this->em,
);

$this->assertEmpty($extension->getFilters());
}
}

0 comments on commit db5b781

Please sign in to comment.