mirror of
https://github.com/appwrite/appwrite
synced 2026-04-28 17:07:22 +00:00
15 lines
452 B
PHP
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']);
|
|
}
|
|
}
|