@Test
public void getByWidgetIdAndUserId_missing() {
Long widgetId = 123L;
Long userId = 234L;
WidgetRating byWidgetAndUser = repository.getByWidgetIdAndUserId(widgetId, userId);
assertNull("Don't expect a WidgetRating for widgetId 123 and userId 234", byWidgetAndUser);
}