Skip to content

Commit

Permalink
Eliminate phpunit deprecation (#178)
Browse files Browse the repository at this point in the history
  • Loading branch information
janedbal authored Aug 8, 2024
1 parent a17b269 commit b3fd5fa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/ConsoleFormatterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
use ShipMonk\ComposerDependencyAnalyser\Result\ResultFormatter;
use ShipMonk\ComposerDependencyAnalyser\Result\SymbolUsage;

class ConsoleFormatterTest extends FormatterTest
class ConsoleFormatterTest extends FormatterTestCase
{

public function testPrintResult(): void
Expand Down
2 changes: 1 addition & 1 deletion tests/FormatterTest.php → tests/FormatterTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
use function str_replace;
use function stream_get_contents;

abstract class FormatterTest extends TestCase
abstract class FormatterTestCase extends TestCase
{

abstract protected function createFormatter(Printer $printer): ResultFormatter;
Expand Down
2 changes: 1 addition & 1 deletion tests/JunitFormatterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
use ShipMonk\ComposerDependencyAnalyser\Result\ResultFormatter;
use ShipMonk\ComposerDependencyAnalyser\Result\SymbolUsage;

class JunitFormatterTest extends FormatterTest
class JunitFormatterTest extends FormatterTestCase
{

public function testPrintResult(): void
Expand Down

0 comments on commit b3fd5fa

Please sign in to comment.