Added PHPUnit annotations

This commit is contained in:
Constantin Graf
2024-06-14 14:48:10 +02:00
committed by Gregor Vostrak
parent 42da2c3397
commit 7c26cee1ea
23 changed files with 74 additions and 0 deletions

View File

@@ -4,6 +4,12 @@ declare(strict_types=1);
namespace Tests\Unit\Endpoint\Web;
use App\Http\Controllers\Web\HealthCheckController;
use PHPUnit\Framework\Attributes\CoversClass;
use PHPUnit\Framework\Attributes\UsesClass;
#[CoversClass(HealthCheckController::class)]
#[UsesClass(HealthCheckController::class)]
class HealthCheckEndpointTest extends EndpointTestAbstract
{
public function test_up_endpoint_returns_ok(): void