Esempio n. 1
0
        public static void BeforeTestRun()
        {
            var task = Task.Run(() => CreateEmptyDatabase());

            IisExpressHelper.StartIis();
            Host = new Host();

            // Sets up all our domain services
            DomainBootstrapper.SetUp();

            task.Wait();
        }
Esempio n. 2
0
 public static void AfterTestRun()
 {
     Host.WebDriver.Quit();
     IisExpressHelper.StopIis();
 }