/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/Form/Tests/ButtonBuilderTest.php
64 строки
2 KB
Gina Peter Banyard
Remove some implicit bool type juggling
05 авг 2025, 13:19
05 авг 2025, 13:19
8680ce4
Код
Авторство
О чём код?
<?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\Form\Tests; use PHPUnit\Framework\Attributes\DataProvider; use PHPUnit\Framework\TestCase; use Symfony\Component\Form\ButtonBuilder; use Symfony\Component\Form\Exception\InvalidArgumentException; /** * @author Alexander Cheprasov <cheprasov.84@ya.ru> */ class ButtonBuilderTest extends TestCase { public static function getValidNames() { return [ ['reset'], ['submit'], ['foo'], ['0'], [0], ]; } #[DataProvider('getValidNames')] public function testValidNames($name) { $this->assertInstanceOf(ButtonBuilder::class, new ButtonBuilder($name)); } public function testNameContainingIllegalCharacters() { $this->expectException(InvalidArgumentException::class); $this->expectExceptionMessage('The name "button[]" contains illegal characters. Names should start with a letter, digit or underscore and only contain letters, digits, numbers, underscores ("_"), hyphens ("-") and colons (":").'); $this->assertInstanceOf(ButtonBuilder::class, new ButtonBuilder('button[]')); } public static function getInvalidNames() { return [ [''], [null], ]; } #[DataProvider('getInvalidNames')] public function testInvalidNames($name) { $this->expectException(InvalidArgumentException::class); $this->expectExceptionMessage('Buttons cannot have empty names.'); new ButtonBuilder($name); } }