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 MessageMediaTransportTest extends TransportTestCase
{ public static function createTransport(HttpClientInterface
$client = null, string
$from = null
): MessageMediaTransport
{ return new MessageMediaTransport('apiKey', 'apiSecret',
$from,
$client ??
new MockHttpClient());
} public static function toStringProvider(): iterable
{ yield ['messagemedia://api.messagemedia.com', self::
createTransport()];
yield ['messagemedia://api.messagemedia.com?from=TEST', self::
createTransport(null, 'TEST'
)];
} public static function supportedMessagesProvider(): iterable
{ yield [new SmsMessage('0491570156', 'Hello!'
)];