Files
hdk-skeleton/tests/Api/ExampleTest.php
李东云 7669885181 build: 升级到 8.2
Signed-off-by: 李东云 <dongyu.li@luxcreo.ai>
2023-10-13 15:08:31 +08:00

29 lines
505 B
PHP

<?php
declare(strict_types=1);
/**
* This file is part of Hyperf.
*
* @link https://www.hyperf.io
* @document https://hyperf.wiki
* @contact group@hyperf.io
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
*/
namespace Test\Api;
use Test\HttpTestCase;
/**
* @internal
* @coversNothing
*/
class ExampleTest extends HttpTestCase
{
public function testExample(): void
{
$this->assertTrue(true);
$this->assertTrue(is_array($this->get('/')));
}
}