TDD 与 Xml 数据源问题

发布于 2024-12-05 08:29:24 字数 1172 浏览 1 评论 0原文

我正在这样一种情况下运行:我的 TDD 与 Xml 数据源工作正常,但其他则抛出错误“单元测试适配器无法连接到数据源或读取数据”、“错误详细信息:对象引用未设置为对象的实例。”

配置中的 EmployeeModule 工作正常,但 CategoryModule 抛出上述错误,如果我们像这样在 Arribute 级别上定义,CategoryModule 工作正常 DataSource"Microsoft.VisualStudio.TestTools.DataSource.XML", "|DataDirectory|\\Category.xml", "CategoryName", DataAccessMethod.Sequential)]

这是配置设置,

<connectionStrings>
<add name="EmployeeModule" connectionString="|DataDirectory|\\Employee.xml" providerName="Microsoft.VisualStudio.TestTools.DataSource.XML" />
<add name="CategoryModule" connectionString="|DataDirectory|\\Category.xml" providerName="Microsoft.VisualStudio.TestTools.DataSource.XML" />
</connectionStrings>
<microsoft.visualstudio.testtools>
<dataSources>      
  <add name ="Name" connectionString="EmployeeModule" dataTableName="Name" dataAccessMethod="Sequential"/>      
  <add name ="CategoryName" connectionString="CategoryModule" dataTableName="CategoryName" dataAccessMethod="Sequential"/>      
</dataSources>
</microsoft.visualstudio.testtools>

这是否意味着我们无法为 xml 数据源定义多个连接字符串?任何帮助将不胜感激

I am running under a situation where one of my TDD with Xml datasource works fine but other throws an error "The unit test adapter failed to connect to the data source or to read the data", "Error details: Object reference not set to an instance of an object."

EmployeeModule in config works fine but CategoryModule throws above error, CategoryModule works fine if we define on Arribute level like this
DataSource"Microsoft.VisualStudio.TestTools.DataSource.XML", "|DataDirectory|\\Category.xml", "CategoryName", DataAccessMethod.Sequential)]

Here is the config settings

<connectionStrings>
<add name="EmployeeModule" connectionString="|DataDirectory|\\Employee.xml" providerName="Microsoft.VisualStudio.TestTools.DataSource.XML" />
<add name="CategoryModule" connectionString="|DataDirectory|\\Category.xml" providerName="Microsoft.VisualStudio.TestTools.DataSource.XML" />
</connectionStrings>
<microsoft.visualstudio.testtools>
<dataSources>      
  <add name ="Name" connectionString="EmployeeModule" dataTableName="Name" dataAccessMethod="Sequential"/>      
  <add name ="CategoryName" connectionString="CategoryModule" dataTableName="CategoryName" dataAccessMethod="Sequential"/>      
</dataSources>
</microsoft.visualstudio.testtools>

Does it mean that we cannot define multiple connection string for xml datasources? Any help will be appreciated

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

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

发布评论

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

评论(1

趴在窗边数星星i 2024-12-12 08:29:24

我知道这个问题很旧,但我会回答它以帮助其他有同样疑问的人。

你可能是对的。 此 MSDN 示例展示了如何从测试类中的 TestContext 访问数据源(您必须向下阅读一点)。对于多个数据源,测试框架无法决定将哪个数据源放入 TestContext 中。

I know the question is old, but I'll answer it to help others wondering the same.

You are probably correct. This MSDN example shows how to access the data source from TestContext in test class (you must read down a bit). With multiple data sources the test framework cannot decide what data source to put in the TestContext.

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