Пример #1
0
 public void TestGetCalendar()
 {
     Room r = new Room { Uri = new Uri(Path.Combine(Directory.GetCurrentDirectory(), "../../fixture/RES-PHAR-129.ics")), RoomNumber = "RES-PHAR-129" };
     r.Load(r.Uri);
     IICalendar cal = r.GetCalendar();
     Assert.AreEqual<string>("Classroom Renovation Project", cal.Events.First().Summary);
     Assert.AreNotEqual<string>("jhbdvyceri", cal.Events.First().Summary); //makes sure that any arbitrary string matches the summary
 }