/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/Console/Tests/Helper/AbstractQuestionHelperTestCase.php
34 строки
870 B
Christian Flothmann
do not use PHPUnit mock objects without configured expectations
13 янв 2026, 11:45
13 янв 2026, 11:45
a89ea1b
Код
Авторство
О чём код?
<?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\Console\Tests\Helper; use PHPUnit\Framework\TestCase; use Symfony\Component\Console\Input\StreamableInputInterface; abstract class AbstractQuestionHelperTestCase extends TestCase { protected function createStreamableInputInterfaceMock($stream = null, $interactive = true) { $mock = $this->createStub(StreamableInputInterface::class); $mock ->method('isInteractive') ->willReturn($interactive); if ($stream) { $mock ->method('getStream') ->willReturn($stream); } return $mock; } }