Example #1
0
 public void AbstractVdiTestWithImplicitNavigation()
 {
     try
     {
         vdi = TabObject.Resolve <IVdiTab>();
         vdi.Goto <IEvents>().SearchFor("praxis qualitätssicherung");
         DialogWait.For(() => vdi.On <IEvents>().EventList.Count(), c => c == 0, "0 seminars in list");
     }
     finally
     {
         vdi.Quit();
     }
 }
Example #2
0
 public void TestWithImplicitNavigation()
 {
     try
     {
         vdi = new VdiTab();
         vdi.Goto <Events>().SearchFor("praxis qualitätssicherung");
         DialogWait.For(() => vdi.On <Events>().EventList.Count(), c => c == 0, "0 seminars in list");
     }
     finally
     {
         vdi.Quit();
     }
 }