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 796083d commit c2ce9a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/Unit/ExampleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Exolnet\Translation\Tests\Unit;

class ExampleTest extends UnitTest
class ExampleTest extends UnitTestCase
{
public function testBasic()
{
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 c2ce9a3

Please sign in to comment.