Skip to content

Commit 12fb003

Browse files
committed
test: fix phpunit report warning on ci test
1 parent e045fd5 commit 12fb003

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

test/BaseCliTest.php renamed to test/BaseCliTestCase.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111

1212
use PHPUnit\Framework\TestCase;
1313

14-
abstract class BaseCliTest extends TestCase
14+
abstract class BaseCliTestCase extends TestCase
1515
{
1616
}

test/Util/ClogTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@
1010
namespace Toolkit\CliTest\Util;
1111

1212
use Toolkit\Cli\Util\Clog;
13-
use Toolkit\CliTest\BaseCliTest;
13+
use Toolkit\CliTest\BaseCliTestCase;
1414

1515
/**
1616
* class ClogTest
1717
*
1818
* @author inhere
1919
*/
20-
class ClogTest extends BaseCliTest
20+
class ClogTest extends BaseCliTestCase
2121
{
2222
public function testClog_basic(): void
2323
{

0 commit comments

Comments
 (0)