mvc 单元测试提供程序未返回 ProviderManifestToken 字符串

发布于 2024-11-25 11:18:55 字数 201 浏览 2 评论 0原文

目前正在使用 NUnit 进行测试,我得到了 “提供商未返回 ProviderManifestToken 字符串” 每当我执行测试时都会出错。我认为它无法访问位于单独项目中的 web.config 。我想知道如何将连接字符串传递到单元测试项目?或者我是否必须在单元测试项目本身中存储连接字符串? .resx 文件是什么?不? 任何帮助表示赞赏。 谢谢!

currently using NUnit to test and I'm getting a
"Provider did not return ProviderManifestToken String"
error whenever i execute the test. I figured it's not able to access the web.config which is situated in separate project. I was wondering how to go about passing the connection string to the Unit Test project? Or do i have to store a connection string in the Unit test project itself? resx file? no?
any help is appreciated.
thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小嗷兮 2024-12-02 11:18:55

如果您的单元测试程序集名为 School.Student.Tests.dll,那么您需要确保 School.Student.Tests.dll.config 具有正确的连接字符串。
或者您需要将连接字符串从 web.config 复制到单元测试项目中的 app.config

If you have your unit-test assembly named School.Student.Tests.dll, then you need to make sure that School.Student.Tests.dll.config is there with the proper connection string.
Or you need to copy your connection string from web.config to app.config in your unit test project

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文