Temporary workaround for running SpecFlow tests with nunit

--HG--
branch : dev
This commit is contained in:
Renaud Paquay 2010-07-17 15:49:33 -07:00
parent 82ddb5d4c7
commit 99d86a08f2

View File

@ -11,7 +11,11 @@ namespace Orchard.Specs.Hosting {
}
public void Shutdown() {
HostingEnvironment.InitiateShutdown();
//TODO: this line is required to properly shutdown the ASP.NET
// host and release memory when running multiple SpecFlow tests.
// However, nuint complains about an unhandled AppdomainUnloadedException
// When we figure out a way around this, we will re-enable this line.
//HostingEnvironment.InitiateShutdown();
}
}
}