ServerTest.php 237 B

12345678910111213141516
  1. <?php
  2. namespace think\tests\swoole;
  3. use PHPUnit\Framework\TestCase;
  4. use think\swoole\Server;
  5. class ServerTest extends TestCase
  6. {
  7. public function testStart()
  8. {
  9. $server = new Server();
  10. $server->start();
  11. }
  12. }