The Calendar Kata is an advanced kata which can help developers become familiar with the Java 8 Date/Time and ThreeTen-Extra libraries.
The domain for the Calendar kata is an object representation of an Outlook Calendar.
There are several domain classes that are shared by all of the exercises. These are
MyCalendar
,
Meeting
,
WorkWeek
,
FullWeek
,
FullMonth
and
- There are failing tests in
MyCalendarTest
- Make the tests pass by following and completing the TODOs in MyCalendar, WorkWeek, FullMonth and FullWeek.