Sha256: 91a16a62a3b4f43d5500c4fce10428681240cfbbd3ca585fe4964d8e9467ba6e

Contents?: true

Size: 927 Bytes

Versions: 6

Compression:

Stored size: 927 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')
            ->willReturn($interactive);

        if ($stream) {
            $mock->expects($this->any())
                ->method('getStream')
                ->willReturn($stream);
        }

        return $mock;
    }
}

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
dependabot-composer-0.119.0.beta1 helpers/vendor/symfony/console/Tests/Helper/AbstractQuestionHelperTest.php
dependabot-composer-0.113.19 helpers/vendor/symfony/console/Tests/Helper/AbstractQuestionHelperTest.php
dependabot-composer-0.112.1 helpers/vendor/symfony/console/Tests/Helper/AbstractQuestionHelperTest.php
dependabot-composer-0.111.57 helpers/vendor/symfony/console/Tests/Helper/AbstractQuestionHelperTest.php
dependabot-composer-0.111.56 helpers/vendor/symfony/console/Tests/Helper/AbstractQuestionHelperTest.php
dependabot-composer-0.111.52 helpers/vendor/symfony/console/Tests/Helper/AbstractQuestionHelperTest.php