Files
apple 78de918c37 Initial commit: queue workspace
Made-with: Cursor
2026-03-21 02:55:24 +08:00

17 lines
237 B
PHP
Executable File

<?php
namespace think\tests\swoole;
use PHPUnit\Framework\TestCase;
use think\swoole\Server;
class ServerTest extends TestCase
{
public function testStart()
{
$server = new Server();
$server->start();
}
}