import java.util.Date;
/**
 * Agenda test drives a DayPlan
 */
public class Agenda {
  
  /** testDayPlan
   * test out a DayPlan
   */
  public static void testDayPlan() {
    DayPlan dp= new DayPlan();
    dp.setDate(new Date());
    dp.addEvent("wake up.");
    dp.addEvent("brush teeth.");
    System.out.println(dp.getNumEvents());
    System.out.println(dp.showEvents());
  }
}