use of com.vaadin.flow.component.HasLabel in project flow-components by vaadin.
the class HasLabelTest method numberField.
@Test
public void numberField() {
NumberField c = new NumberField();
Assert.assertTrue(c instanceof HasLabel);
}
use of com.vaadin.flow.component.HasLabel in project flow-components by vaadin.
the class HasLabelTest method textArea.
@Test
public void textArea() {
TextArea c = new TextArea();
Assert.assertTrue(c instanceof HasLabel);
}
use of com.vaadin.flow.component.HasLabel in project flow-components by vaadin.
the class HasLabelTest method passwordField.
@Test
public void passwordField() {
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 tab.
@Test
public void tab() {
Tab c = new Tab();
Assert.assertTrue(c instanceof HasLabel);
}
use of com.vaadin.flow.component.HasLabel in project flow-components by vaadin.
the class HasLabelTest method tab.
@Test
public void tab() {
TimePicker c = new TimePicker();
Assert.assertTrue(c instanceof HasLabel);
}
Aggregations