File tree 3 files changed +4
-16
lines changed
test/unit/ComposerIntegration
3 files changed +4
-16
lines changed Original file line number Diff line number Diff line change 8
8
use Symfony \Component \Console \Helper \QuestionHelper ;
9
9
use Webmozart \Assert \Assert ;
10
10
11
+ /** @internal This is not public API for PIE, so should not be depended upon unless you accept the risk of BC breaks */
11
12
class MinimalHelperSet extends HelperSet
12
13
{
13
- public function __construct (array $ helpers = [])
14
+ /** @param array{question: QuestionHelper} $helpers */
15
+ public function __construct (array $ helpers )
14
16
{
15
17
Assert::isInstanceOf (
16
18
$ helpers ['question ' ] ?? null ,
17
19
QuestionHelper::class,
18
- 'The question option must be an instance of %2$s, got %s '
20
+ 'The question option must be an instance of %2$s, got %s ' ,
19
21
);
20
22
21
23
parent ::__construct ($ helpers );
Original file line number Diff line number Diff line change 25
25
use Php \Pie \Installing \UnixInstall ;
26
26
use Php \Pie \Installing \WindowsInstall ;
27
27
use Psr \Container \ContainerInterface ;
28
- use Symfony \Component \Console \Helper \HelperSet ;
29
28
use Symfony \Component \Console \Helper \QuestionHelper ;
30
29
use Symfony \Component \Console \Input \ArgvInput ;
31
30
use Symfony \Component \Console \Input \InputInterface ;
Original file line number Diff line number Diff line change 7
7
use Php \Pie \ComposerIntegration \MinimalHelperSet ;
8
8
use PHPUnit \Framework \Attributes \CoversClass ;
9
9
use PHPUnit \Framework \TestCase ;
10
- use stdClass ;
11
10
use Symfony \Component \Console \Helper \QuestionHelper ;
12
11
13
12
#[CoversClass(MinimalHelperSet::class)]
@@ -18,16 +17,4 @@ public function testHappyPath(): void
18
17
$ this ->expectNotToPerformAssertions ();
19
18
new MinimalHelperSet (['question ' => $ this ->createMock (QuestionHelper::class)]);
20
19
}
21
-
22
- public function testQuestionOptionIsMissing (): void
23
- {
24
- $ this ->expectExceptionMessage ('The question option must be an instance of Symfony\Component\Console\Helper\QuestionHelper, got NULL ' );
25
- new MinimalHelperSet ([]);
26
- }
27
-
28
- public function testQuestionOptionIsNotAQuestionHelper (): void
29
- {
30
- $ this ->expectExceptionMessage ('The question option must be an instance of Symfony\Component\Console\Helper\QuestionHelper, got stdClass ' );
31
- new MinimalHelperSet (['question ' => new stdClass ()]);
32
- }
33
20
}
You can’t perform that action at this time.
0 commit comments