From 293f90bf80b4d3ea13a529fb45d27cfebdc4adfa Mon Sep 17 00:00:00 2001 From: Albert Chen Date: Wed, 8 Oct 2025 14:24:11 +0800 Subject: [PATCH] chore: remove internal mark in test case --- src/foundation/src/Testing/TestCase.php | 6 +----- src/foundation/src/Testing/TestResponseAssert.php | 2 -- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/src/foundation/src/Testing/TestCase.php b/src/foundation/src/Testing/TestCase.php index c82cec7e..0361d5b6 100644 --- a/src/foundation/src/Testing/TestCase.php +++ b/src/foundation/src/Testing/TestCase.php @@ -21,11 +21,7 @@ use function Hyperf\Coroutine\run; -/** - * @internal - * @coversNothing - */ -class TestCase extends \PHPUnit\Framework\TestCase +abstract class TestCase extends \PHPUnit\Framework\TestCase { use InteractsWithContainer; use MakesHttpRequests; diff --git a/src/foundation/src/Testing/TestResponseAssert.php b/src/foundation/src/Testing/TestResponseAssert.php index 2afe5867..71a90780 100644 --- a/src/foundation/src/Testing/TestResponseAssert.php +++ b/src/foundation/src/Testing/TestResponseAssert.php @@ -13,8 +13,6 @@ use Throwable; /** - * @internal - * * @mixin Assert */ class TestResponseAssert