HostingEnvironment.MapPath在ASP.Net MVC NUnit Test中返回null

时间:2015-03-12 13:01:11

标签: c# asp.net asp.net-mvc nunit

我必须使用此代码使用NUnit测试服务:

var fileMap = new ExeConfigurationFileMap(); 
fileMap.ExeConfigFilename =   HostingEnvironment.MapPath("~/Modules/Proy.Notification/Web.config");
_configuration = ConfigurationManager.OpenMappedExeConfiguration(fileMap, ConfigurationUserLevel.None);

问题是HostingEnvironment.MapPath返回null。有没有办法模拟我的配置或让它指向正确的文件夹?

BTW:我无法更改我正在测试的代码。

0 个答案:

没有答案