public void TestFixtureTearDown()
 {
     if (appHost != null)
     {
         appHost.Dispose();
     }
     appHost = null;
 }
		public void TestFixtureTearDown()
		{
			if (appHost != null) appHost.Dispose();
			appHost = null;
		}
		public void TextFixtureSetUp()
		{
			appHost = new RestFilesHttpListener();
			appHost.Init();
		}
 public void TextFixtureSetUp()
 {
     appHost = new RestFilesHttpListener();
     appHost.Init();
 }