use Symfony\Component\Notifier\Message\SmsMessage;
use Symfony\Component\Notifier\Notification\Notification;
use Symfony\Component\Notifier\Test\TransportTestCase;
use Symfony\Component\Notifier\Tests\Transport\DummyMessage;
use Symfony\Contracts\HttpClient\HttpClientInterface;
use Symfony\Contracts\HttpClient\ResponseInterface;
final class GoogleChatTransportTest extends TransportTestCase
{ public static function createTransport(HttpClientInterface
$client = null, string
$threadKey = null
): GoogleChatTransport
{ return new GoogleChatTransport('My-Space', 'theAccessKey', 'theAccessToken=',
$threadKey,
$client ??
new MockHttpClient());
} public static function toStringProvider(): iterable
{ yield ['googlechat://chat.googleapis.com/My-Space', self::
createTransport()];
yield ['googlechat://chat.googleapis.com/My-Space?thread_key=abcdefg', self::
createTransport(null, 'abcdefg'
)];
} public static function supportedMessagesProvider(): iterable
{ yield [new ChatMessage('Hello!'
)];
}