$this->
markTestIncomplete('Needs to be reimplemented using validators'
);
$form =
$this->factory->
create(static::TESTED_TYPE, null,
[ 'widget' => 'choice',
]);
$form->
submit([ 'hour' => '',
'minute' => '',
]);
$this->
assertFalse($form->
isPartiallyFilled());
} public function testIsPartiallyFilledReturnsFalseIfCompletelyEmptyWithSeconds() { $this->
markTestIncomplete('Needs to be reimplemented using validators'
);
$form =
$this->factory->
create(static::TESTED_TYPE, null,
[ 'widget' => 'choice',
'with_seconds' => true,
]);