use of com.alexstyl.specialdates.events.peopleevents.StandardEventType in project Memento-Calendar by alexstyl.
the class StandardEventTypeTest method mapsTypeBirthdayIdToBirthdayEvent.
@Test
public void mapsTypeBirthdayIdToBirthdayEvent() {
StandardEventType eventType = StandardEventType.fromId(TYPE_BIRTHDAY);
assertThat(eventType).isEqualTo(StandardEventType.BIRTHDAY);
}
use of com.alexstyl.specialdates.events.peopleevents.StandardEventType in project Memento-Calendar by alexstyl.
the class StandardEventTypeTest method mapsTypeNamedayIdToNamedayEvent.
@Test
public void mapsTypeNamedayIdToNamedayEvent() {
StandardEventType eventType = StandardEventType.fromId(TYPE_NAMEDAY);
assertThat(eventType).isEqualTo(StandardEventType.NAMEDAY);
}
Aggregations