Skip to content

Commit

Permalink
Mark test classes as final
Browse files Browse the repository at this point in the history
  • Loading branch information
natanfelles committed Dec 5, 2023
1 parent c376492 commit 6dd906b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/AutoloaderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
use Framework\Autoload\Autoloader;
use PHPUnit\Framework\TestCase;

class AutoloaderTest extends TestCase
final class AutoloaderTest extends TestCase
{
protected Autoloader $autoloader;

Expand Down
2 changes: 1 addition & 1 deletion tests/Debug/AutoloadCollectorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
use Framework\Autoload\Debug\AutoloadCollector;
use PHPUnit\Framework\TestCase;

class AutoloadCollectorTest extends TestCase
final class AutoloadCollectorTest extends TestCase
{
protected AutoloadCollector $collector;
protected Autoloader $autoloader;
Expand Down
2 changes: 1 addition & 1 deletion tests/LocatorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
use Framework\Autoload\Locator;
use PHPUnit\Framework\TestCase;

class LocatorTest extends TestCase
final class LocatorTest extends TestCase
{
protected Autoloader $autoloader;
protected Locator $locator;
Expand Down

0 comments on commit 6dd906b

Please sign in to comment.