use of com.alexstyl.specialdates.events.peopleevents.CustomEventType in project Memento-Calendar by alexstyl.
the class EventLabelCreatorTest method customIsCalculatedCorrectly.
@Test
public void customIsCalculatedCorrectly() {
Date date = Date.Companion.on(12, DECEMBER);
ContactEvent event = contactEventOn(date, new CustomEventType("H4x"));
String label = creator.createFor(event);
assertThat(label).isEqualTo("H4x on December 12");
}
Aggregations