예제 #1
0
 public void TestFixtureSetUp()
 {
     appHost = new AppHost();
     appHost.Init();
     appHost.Start(Config.AbsoluteBaseUri);
 }
 public void OnTestFixtureSetUp()
 {
     appHost = new AppHost();
     appHost.Init();
     appHost.Start(ListeningOn);
 }
 public ExceptionHandlingTestsAsync()
 {
     appHost = new AppHost();
     appHost.Init();
     appHost.Start(Config.ListeningOn);
 }
 public void TearDown()
 {
     appHost.Dispose();
     appHost = null;
 }