Skip to content

Commit f506c71

Browse files
committed
test: rename abtract classname for PHPUnit10
1 parent 62c0097 commit f506c71

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

tests/system/Cache/Handlers/AbstractHandlerTest.php renamed to tests/system/Cache/Handlers/AbstractHandlerTestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
/**
1818
* @internal
1919
*/
20-
abstract class AbstractHandlerTest extends CIUnitTestCase
20+
abstract class AbstractHandlerTestCase extends CIUnitTestCase
2121
{
2222
protected BaseHandler $handler;
2323
protected static $key1 = 'key1';

tests/system/Cache/Handlers/FileHandlerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
*
2222
* @group Others
2323
*/
24-
final class FileHandlerTest extends AbstractHandlerTest
24+
final class FileHandlerTest extends AbstractHandlerTestCase
2525
{
2626
private static string $directory = 'FileHandler';
2727
private Cache $config;

tests/system/Cache/Handlers/MemcachedHandlerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
*
2222
* @internal
2323
*/
24-
final class MemcachedHandlerTest extends AbstractHandlerTest
24+
final class MemcachedHandlerTest extends AbstractHandlerTestCase
2525
{
2626
private Cache $config;
2727

tests/system/Cache/Handlers/PredisHandlerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*
2121
* @internal
2222
*/
23-
final class PredisHandlerTest extends AbstractHandlerTest
23+
final class PredisHandlerTest extends AbstractHandlerTestCase
2424
{
2525
private Cache $config;
2626

tests/system/Cache/Handlers/RedisHandlerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*
2121
* @internal
2222
*/
23-
final class RedisHandlerTest extends AbstractHandlerTest
23+
final class RedisHandlerTest extends AbstractHandlerTestCase
2424
{
2525
private Cache $config;
2626

0 commit comments

Comments
 (0)