Example #1
0
 public void TestCreateConference()
 {
     var client = new CommunicationServiceContractClient();
     var conf = client.CreateConference(AccidentId, "Virtual Room 2");
     var selectedConf = client.GetConferencieList(AccidentId).SingleOrDefault(x => x.Id == conf.Id);
     Assert.IsNotNull(selectedConf);
     Assert.AreEqual(conf.State, selectedConf.State);
     Assert.AreEqual(conf.Title, selectedConf.Title);
 }