/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/Notifier/Test/MissingRequiredOptionTestTrait.php
42 строки
1 KB
Christian Flothmann
deprecate the TransportFactoryTestCase
23 сен 2024, 12:20
23 сен 2024, 12:20
c8b0fcc
Код
Авторство
О чём код?
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Notifier\Test; use PHPUnit\Framework\Attributes\DataProvider; use Symfony\Component\Notifier\Exception\MissingRequiredOptionException; use Symfony\Component\Notifier\Transport\Dsn; trait MissingRequiredOptionTestTrait { /** * @return iterable<array{0: string, 1?: string|null}> */ abstract public static function missingRequiredOptionProvider(): iterable; /** * @dataProvider missingRequiredOptionProvider */ #[DataProvider('missingRequiredOptionProvider')] public function testMissingRequiredOptionException(string $dsn, ?string $message = null) { $factory = $this->createFactory(); $dsn = new Dsn($dsn); $this->expectException(MissingRequiredOptionException::class); if (null !== $message) { $this->expectExceptionMessage($message); } $factory->create($dsn); } }