コード例 #1
0
        public async static void WhiteBoxTest_EventAdapter_LoadEvents_Speakers()
        {
            Event[] events = await EventAdapter.LoadEvents();

            Console.WriteLine(events[0].EventSpeakers);
            //Asert.IsTrue("" == events[0].EventSpeakers);
        }
コード例 #2
0
        public async static void WhiteBoxTest_EventAdapter_LoadEvents_Description()
        {
            Event[] events = await EventAdapter.LoadEvents();

            Assert.IsTrue("The Software Engineering II presentation for Iteration 0" == events[1].EventDescription);
            //Not guaranteed to have an event description
        }
コード例 #3
0
        public async static void WhiteBoxTest_EventAdapter_LoadEvents_Date()
        {
            Event[] events = await EventAdapter.LoadEvents();

            Assert.IsTrue("2017-03-24" == events[0].EventDate);
        }
コード例 #4
0
        public async static void WhiteBoxTest_EventAdapter_LoadEvents_Topic()
        {
            Event[] events = await EventAdapter.LoadEvents();

            Assert.IsTrue("Topic: To be announced" == events[0].EventTopic);
        }
コード例 #5
0
 public async void WhiteBoxTest_Events_getList()
 {
     Event[] events = await EventAdapter.LoadEvents();
 }