namespace Symfony\Component\Notifier\Bridge\MicrosoftTeams\Tests\Action\Input;
use Symfony\Component\Notifier\Bridge\MicrosoftTeams\Action\Input\DateInput;
use Symfony\Component\Notifier\Bridge\MicrosoftTeams\Test\Action\Input\AbstractInputTestCase;
final class DateInputTest extends AbstractInputTestCase
{ public function createInput(): DateInput
{ return new DateInput();
} public function testIncludeTimeWithTrue() { $input =
$this->
createInput() ->
includeTime(true
);
$this->
assertTrue($input->
toArray()['includeTime'
]);
} public function testIncludeTimeWithFalse() {