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 authored and Pyker committed Nov 28, 2024
1 parent 9d21064 commit 2f9d586
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion tests/Unit/ApiTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;

class ApiTest extends TestCase
final class ApiTest extends TestCase
{
use RefreshDatabase;

Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/BaseTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
use Illuminate\Support\Facades\Session;
use Tests\TestCase;

class BaseTest extends TestCase
final class BaseTest extends TestCase
{
use RefreshDatabase;

Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/BuildTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;

class BuildTest extends TestCase
final class BuildTest extends TestCase
{
use RefreshDatabase;

Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/ClientTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;

class ClientTest extends TestCase
final class ClientTest extends TestCase
{
use RefreshDatabase;

Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/KeyTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;

class KeyTest extends TestCase
final class KeyTest extends TestCase
{
use RefreshDatabase;

Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/ModTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;

class ModTest extends TestCase
final class ModTest extends TestCase
{
use RefreshDatabase;

Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/ModpackTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;

class ModpackTest extends TestCase
final class ModpackTest extends TestCase
{
use RefreshDatabase;

Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/UrlUtilsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use App\Libraries\UrlUtils;
use Tests\TestCase;

class UrlUtilsTest extends TestCase
final class UrlUtilsTest extends TestCase
{
public function test_get_remote_md5(): void
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/UserTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use Illuminate\Support\Facades\Hash;
use Tests\TestCase;

class UserTest extends TestCase
final class UserTest extends TestCase
{
use RefreshDatabase;

Expand Down

0 comments on commit 2f9d586

Please sign in to comment.