assertThat(widgetDto.getCreatedAt()).isNotNull();
assertThat(widgetDto.getUpdatedAt()).isNotNull();
Collection<WidgetPropertyDto> props = widgetDto.getWidgetProperties();
assertThat(props).hasSize(1);
WidgetPropertyDto prop = Iterables.getFirst(props, null);
assertThat(prop.getPropertyKey()).isEqualTo("fake-property");
assertThat(prop.getTextValue()).isEqualTo("fake_metric");
}