Files
hdk-skeleton/test/Api/ExampleTest.php

29 lines
505 B
PHP
Raw Normal View History

2023-03-21 16:56:42 +08:00
<?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('/')));
}
}