Page MenuHomePhorge

HealthTest.php
No OneTemporary

Authored By
Unknown
Size
631 B
Referenced Files
None
Subscribers
None

HealthTest.php

<?php
namespace Tests\Feature\Controller;
use Tests\TestCase;
/**
* @group files
*/
class HealthTest extends TestCase
{
/**
* {@inheritDoc}
*/
public function setUp(): void
{
parent::setUp();
}
/**
* {@inheritDoc}
*/
public function tearDown(): void
{
parent::tearDown();
}
/**
* Test webhook
*/
public function testHealthProbes(): void
{
$response = $this->get("api/health/readiness");
$response->assertStatus(200);
$response = $this->get("api/health/liveness");
$response->assertStatus(200);
}
}

File Metadata

Mime Type
text/x-php
Expires
Fri, Apr 24, 1:41 PM (2 d, 16 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
18849239
Default Alt Text
HealthTest.php (631 B)

Event Timeline