use Symfony\Component\Mailer\Bridge\Brevo\Transport\BrevoApiTransport;
use Symfony\Component\Mailer\Bridge\Brevo\Transport\BrevoSmtpTransport;
use Symfony\Component\Mailer\Bridge\Brevo\Transport\BrevoTransportFactory;
use Symfony\Component\Mailer\Test\TransportFactoryTestCase;
use Symfony\Component\Mailer\Transport\Dsn;
use Symfony\Component\Mailer\Transport\TransportFactoryInterface;
class BrevoTransportFactoryTest extends TransportFactoryTestCase
{ public function getFactory(): TransportFactoryInterface
{ return new BrevoTransportFactory(null,
new MockHttpClient(),
new NullLogger());
} public static function supportsProvider(): iterable
{ yield [ new Dsn('brevo', 'default'
),
true,
];
yield [ new Dsn('brevo+smtp', 'default'
),