Skip to content

Commit

Permalink
add another test scenario
Browse files Browse the repository at this point in the history
  • Loading branch information
seferov committed Jun 20, 2024
1 parent 10e59e1 commit c28ded5
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion tests/acceptance/acceptance/console/ConsoleArgument.feature
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,17 @@ Feature: ConsoleArgument
{
public function configure(): void
{
$this->addArgument('required_string', InputArgument::REQUIRED);
$this->addArgument(
'required_string',
InputArgument::REQUIRED,
'description',
null,
[
'string1',
'string2',
'string3',
]
);
$this->addArgument('required_array', InputArgument::REQUIRED | InputArgument::IS_ARRAY);
}
Expand Down

0 comments on commit c28ded5

Please sign in to comment.