appwrite/tests/e2e/Services/Health/AntiVirusTest.php
2026-01-01 09:54:13 +00:00

15 lines
452 B
PHP

<?php
namespace Tests\E2E\Services\Health;
class AntiVirusTest extends HealthBase
{
public function testAntiVirus(): void
{
$response = $this->callGet('/health/anti-virus');
$this->assertEquals(200, $response['headers']['status-code']);
$this->assertNotEmpty($response['body']['status']);
$this->assertIsString($response['body']['status']);
$this->assertIsString($response['body']['version']);
}
}