appwrite/tests/e2e/Services/Health/AntiVirusTest.php

16 lines
452 B
PHP
Raw Normal View History

2026-01-01 09:54:13 +00:00
<?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']);
}
}