Example #1
0
        public void AppointmentConstructorTest()
        {
            var builder = new AppointmentBuilder();

            builder.SetLabel("Test Label");
            builder.SetDetails("Detail text");
            builder.SetOccurs(new Diary.DateTime(new Date(6, Date.Month.MAY, 2017), 10, 3));
            builder.SetDurationMinutes(42);

            Helper.AssertAreEqual(builder, (Appointment)builder.Build(), "");
        }