From 1df9a2635060bdf550bb62a7dd912c333bc82ca7 Mon Sep 17 00:00:00 2001 From: yaozm Date: Sat, 7 Oct 2023 14:55:29 +0800 Subject: [PATCH] test(QqChannelBotTest): Skip testQqChannelBot - Skip the testQqChannelBot method - Add markTestSkipped method to skip the test - Expect ClientException to be thrown --- tests/Feature/QqChannelBotTest.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/Feature/QqChannelBotTest.php b/tests/Feature/QqChannelBotTest.php index e6290397..a24ed712 100644 --- a/tests/Feature/QqChannelBotTest.php +++ b/tests/Feature/QqChannelBotTest.php @@ -20,6 +20,8 @@ class QqChannelBotTest extends TestCase { public function testQqChannelBot(): void { + $this->markTestSkipped(self::class.' is skipped.'); + $this->expectException(ClientException::class); Factory::qqChannelBot()