use of com.vaadin.flow.component.HasLabel in project flow-components by vaadin.
the class HasLabelTest method textField.
@Test
public void textField() {
TextField c = new TextField();
Assert.assertTrue(c instanceof HasLabel);
}
use of com.vaadin.flow.component.HasLabel in project flow-components by vaadin.
the class HasLabelTest method integerField.
@Test
public void integerField() {
IntegerField c = new IntegerField();
Assert.assertTrue(c instanceof HasLabel);
}
use of com.vaadin.flow.component.HasLabel in project flow-components by vaadin.
the class HasLabelTest method bigDecimalField.
@Test
public void bigDecimalField() {
BigDecimalField c = new BigDecimalField();
Assert.assertTrue(c instanceof HasLabel);
}
use of com.vaadin.flow.component.HasLabel in project flow-components by vaadin.
the class HasLabelTest method checkbox.
@Test
public void checkbox() {
Checkbox c = new Checkbox();
Assert.assertTrue(c instanceof HasLabel);
}
use of com.vaadin.flow.component.HasLabel in project flow-components by vaadin.
the class HasLabelTest method emailField.
@Test
public void emailField() {
EmailField c = new EmailField();
Assert.assertTrue(c instanceof HasLabel);
}
Aggregations