public void TestFixtureTearDown()
 {
     if (appHost != null)
     {
         appHost.Dispose();
     }
     appHost = null;
 }
 public void TextFixtureSetUp()
 {
     try
     {
         appHost = new PartialContentAppHost();
         appHost.Init();
         appHost.Start(ListeningOn);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
 public void TestFixtureTearDown()
 {
     if (appHost != null) appHost.Dispose();
     appHost = null;
 }
 public void TextFixtureSetUp()
 {
     try
     {
         appHost = new PartialContentAppHost();
         appHost.Init();
         appHost.Start(ListeningOn);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }