public void TestFixtureSetUp()
        {
            //If you MVC project is not in the root of your solution directory then include the path
            //e.g. AppHost.Simulate("Website\MyMvcApplication")

            try
            {
                appHost = AppHost.Simulate("MyMvcApplication");
            }
            catch (Exception e)
            {
                Console.WriteLine(e.ToString());
                throw;
            }
        }
 public void TestFixtureSetUp()
 {
     //If you MVC project is not in the root of your solution directory then include the path
     //e.g. AppHost.Simulate("Website\SportsItemsStore.WebUI")
     _appHost = AppHost.Simulate("SportsItemsStore.WebUI");
 }
 public void TestFixtureSetUp()
 {
     //If you MVC project is not in the root of your solution directory then include the path
     //e.g. AppHost.Simulate("Website\MyMvcApplication")
     appHost = AppHost.Simulate("MyMvcApplication");
 }
		public void TestFixtureSetUp()
		{
			appHost = AppHost.Simulate("WebApplication1");
		}
 public Index_NewSession()
 {
     appHost = AppHost.Simulate(AspMvcBasementHelloWorld.C_StringConstants.C_ApplicationName);
     //If you MVC project is not in the root of your solution directory then include the path
     //e.g. AppHost.Simulate("Website\MyMvcApplication")
 }