ElementHelper.getLabelValue("test", 321, T.label, "", "testagain", "that");
}
@Test
public void shouldAttachKeyValuesButNotLabelsOrId() {
final Element mockElement = mock(Element.class);
ElementHelper.attachProperties(mockElement, "test", 123, T.id, 321, T.label, "friends");
verify(mockElement, times(1)).property("test", 123);
verify(mockElement, times(0)).property(T.id.getAccessor(), 321);
verify(mockElement, times(0)).property(T.label.getAccessor(), "friends");
}