use Symfony\Component\Notifier\Message\ChatMessage;
use Symfony\Component\Notifier\Message\SmsMessage;
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 ClickSendTransportTest extends TransportTestCase
{ public static function createTransport(HttpClientInterface
$client = null, string
$from = 'test_from', string
$source = 'test_source', int
$listId = 99, string
$fromEmail = 'foo@bar.com'
): ClickSendTransport
{ return new ClickSendTransport('test_username', 'test_key',
$from,
$source,
$listId,
$fromEmail,
$client ??
new MockHttpClient());
} public static function invalidFromProvider(): iterable
{ yield 'no zero at start if phone number' =>
['+0'
];
yield 'phone number too short' =>
['+1'
];
} public static function supportedMessagesProvider(): iterable
{ yield [new SmsMessage('0611223344', 'Hello!'
)];