Sha256: d7c6522805c0ea62b46dfda6c6f157f3071dcb9e7db341a957cf2220548736b0
Contents?: true
Size: 941 Bytes
Versions: 36
Compression:
Stored size: 941 Bytes
Contents
<?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 AbstractQuestionHelperTest extends TestCase { protected function createStreamableInputInterfaceMock($stream = null, $interactive = true) { $mock = $this->getMockBuilder(StreamableInputInterface::class)->getMock(); $mock->expects($this->any()) ->method('isInteractive') ->will($this->returnValue($interactive)); if ($stream) { $mock->expects($this->any()) ->method('getStream') ->willReturn($stream); } return $mock; } }
Version data entries
36 entries across 36 versions & 1 rubygems