use Symfony\Component\Notifier\Bridge\MicrosoftTeams\Action\Input\AbstractInput;
/**
* @author Oskar Stark <oskarstark@googlemail.com>
*/
abstract class AbstractInputTestCase extends TestCase
{ abstract public function createInput(): AbstractInput;
public function testId() { $input =
$this->
createInput();
$input->
id($value = '1234'
);
$this->
assertSame($value,
$input->
toArray()['id'
]);
} public function testIsRequiredWithFalse() { $input =
$this->
createInput();
$input->
isRequired(false
);