@Test
  public void testToDomainEntity() throws Exception {
    CalendarViewRecurrence.Month month = monthMapper.toUiEntity(AUGUST);

    verify(localizer).localize(AUGUST);
    assertThat(month.localizedLabel(), is(LOCALIZED_MONTH));
    assertThat(month.rawValue(), is(Calendar.AUGUST));
  }