Skip to content

Commit

Permalink
test: abstract classes with the Test suffix are deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
xel1045 committed Mar 26, 2024
1 parent 8ca6f8e commit 1df6718
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tests/Unit/Model/NodeUnorderedTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

use Exolnet\ClosureTable\Models\NodeUnordered;
use Exolnet\ClosureTable\Tests\Mocks\NodeMock;
use Exolnet\ClosureTable\Tests\Unit\UnitTest;
use Exolnet\ClosureTable\Tests\Unit\UnitTestCase;

class NodeUnorderedTest extends UnitTest
class NodeUnorderedTest extends UnitTestCase
{
/**
* @var \Exolnet\ClosureTable\Tests\Mocks\NodeMock
Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/UnitTest.php → tests/Unit/UnitTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use Mockery;
use PHPUnit\Framework\TestCase;

abstract class UnitTest extends TestCase
abstract class UnitTestCase extends TestCase
{
public function tearDown(): void
{
Expand Down

0 comments on commit 1df6718

Please sign in to comment.