Skip to content

Commit

Permalink
Define test classes as final
Browse files Browse the repository at this point in the history
  • Loading branch information
laravel-shift committed May 31, 2024
1 parent 873bd6f commit 62cb448
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/Api/AreasTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

use Swis\Melvin\Tests\TestCase;

class AreasTest extends TestCase
final class AreasTest extends TestCase
{
public function testAll(): void
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Api/SituationsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

use Swis\Melvin\Tests\TestCase;

class SituationsTest extends TestCase
final class SituationsTest extends TestCase
{
public function testExport(): void
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Integration/SituationsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
use Swis\Melvin\Models\Area;
use Swis\Melvin\SituationFilterParameters;

class SituationsTest extends TestCase
final class SituationsTest extends TestCase
{
private Client $client;

Expand Down
2 changes: 1 addition & 1 deletion tests/Schema/SituationsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use Opis\JsonSchema\Validator;
use PHPUnit\Framework\TestCase;

class SituationsTest extends TestCase
final class SituationsTest extends TestCase
{
private const SCHEMA_ID = 'https://github.com/swisnl/melvin/schema.json';

Expand Down

0 comments on commit 62cb448

Please sign in to comment.