namespace Symfony\Component\Notifier\Bridge\MicrosoftTeams\Tests\Action\Input;
use Symfony\Component\Notifier\Bridge\MicrosoftTeams\Action\Input\MultiChoiceInput;
use Symfony\Component\Notifier\Bridge\MicrosoftTeams\Test\Action\Input\AbstractInputTestCase;
use Symfony\Component\Notifier\Exception\InvalidArgumentException;
final class MultiChoiceInputTest extends AbstractInputTestCase
{ public function createInput(): MultiChoiceInput
{ return new MultiChoiceInput();
} public function testTarget() { $input =
$this->
createInput() ->
choice($display = 'DISPLAY',
$value = 'VALUE'
);
$this->
assertSame( [ ['display' =>
$display, 'value' =>
$value],
],