ASP.NET集成测试 - TestDrive.net不会运行它们,其他测试人员会

时间:2011-10-20 20:31:48

标签: c# asp.net sqlite nunit testdriven.net

我将解决方案升级到.NET 4.0后,最近我had problems进行了集成测试 - 该问题的答案是获取64位版本的System.Data.SQLite.dll。

我已经想到了,但我有一个相关的问题。当我使用Resharper testrunner时,我的集成测试会执行,但是当我使用TestDriven.NET testrunner时会抛出异常:

Test 'MyApp.IntegrationTests.DataAccess.Providers.ContactFormSubmissionProviderTest.CanFetchContactFormSubmissionById' failed:
    System.TypeInitializationException : The type initializer for 'MyApp.DataAccess.NHibernate.SessionManager' threw an exception.
  ----> NHibernate.HibernateException : Could not create the driver from NHibernate.Driver.SQLite20Driver.
  ----> System.Reflection.TargetInvocationException : Exception has been thrown by the target of an invocation.
  ----> NHibernate.HibernateException : The IDbCommand and IDbConnection implementation in the assembly System.Data.SQLite could not be found. Ensure that the assembly System.Data.SQLite is located in the application directory or in the Global Assembly Cache. If the assembly is in the GAC, use <qualifyAssembly/> element in the application configuration file to specify the full name of the assembly.
    at MyApp.DataAccess.NHibernate.SessionManager.OpenSession()
    DataAccess\Providers\ContactFormSubmissionProviderTest.cs(28,0): at MyApp.IntegrationTests.DataAccess.Providers.ContactFormSubmissionProviderTest.CanFetchContactFormSubmissionById()
    --HibernateException
    at NHibernate.Connection.ConnectionProvider.ConfigureDriver(IDictionary`2 settings)
    at NHibernate.Connection.ConnectionProvider.Configure(IDictionary`2 settings)
    at NHibernate.Connection.ConnectionProviderFactory.NewConnectionProvider(IDictionary`2 settings)
    at NHibernate.Cfg.SettingsFactory.BuildSettings(IDictionary`2 properties)
    at NHibernate.Cfg.Configuration.BuildSettings()
    at NHibernate.Cfg.Configuration.BuildSessionFactory()
    NHibernate\SessionManager.cs(18,0): at MyApp.DataAccess.NHibernate.SessionManager..cctor()
    --TargetInvocationException
    at System.RuntimeTypeHandle.CreateInstance(RuntimeType type, Boolean publicOnly, Boolean noCheck, Boolean& canBeCached, RuntimeMethodHandleInternal& ctor, Boolean& bNeedSecurityCheck)
    at System.RuntimeType.CreateInstanceSlow(Boolean publicOnly, Boolean skipCheckThis, Boolean fillCache)
    at System.RuntimeType.CreateInstanceDefaultCtor(Boolean publicOnly, Boolean skipVisibilityChecks, Boolean skipCheckThis, Boolean fillCache)
    at System.Activator.CreateInstance(Type type, Boolean nonPublic)
    at System.Activator.CreateInstance(Type type)
    at NHibernate.Connection.ConnectionProvider.ConfigureDriver(IDictionary`2 settings)
    --HibernateException
    at NHibernate.Driver.ReflectionBasedDriver..ctor(String driverAssemblyName, String connectionTypeName, String commandTypeName)
    at NHibernate.Driver.SQLite20Driver..ctor()

图片: Exception, D'oh!

我也尝试了this link中的解决方案;它没有帮助。如何从Testdriven.Net运行我的测试?

更新

我的项目设置为Any CPU,Release平台。

我的操作系统是Windows 7 64位。我已经链接了x86和x64版本的SQLite。说明:

我的解决方案有几个项目--DataAccess,IntegrationTests,Core和UI。所有都是.net 4.0项目,所有类都是类库,除了UI,这是一个MVC 3.0项目。我正在使用nUnit 2.4.8.0。我的DataAccess图层使用了NHibernate。

  • 我的UI项目引用1.0.60.0(否则我无法在VS2010中运行我的应用程序)。
  • 我的IntegrationTests项目引用1.0.74.0(否则我无法使用Resharper的TestRunner运行我的测试)。
  • 我的DataAccess项目引用1.0.60.0和
  • My Core项目不了解任何与数据库相关的内容。

1.0.60.0是x86,1.0.74.0是x64。

部署站点时,服务器需要x86。

更新2:

TestDriven.NET有一个选项,它使用工具下的32位或64位进程 - &gt;选项 - &gt; TestDriven.NET。我把它改为64位。现在,右键单击并选择“运行测试”将很好地执行它们,但我仍然遇到“使用NCover测试”或“使用覆盖测试”的相同问题,这是我真正想要完成的。

1 个答案:

答案 0 :(得分:2)

我想你可能已经回答了你自己的问题:)

您提到的大多数跑步者默认情况下都会在x86模式下运行,您必须找到特定的实例,您可以告诉某些跑步者(如TestDriven.net)使用x64在您的机器上运行,但现在您已经'使用NCover或Coverage重新遇到同样的问题。

因此,解决方案是强制项目针对x86进行构建。您的库将以x86为目标; ReSharper的跑步者将从您的解决方案中的构建配置中检测到这一点。由于您的目标生产机器是x86,因此没有问题。您可以在Win7 x64上运行x86目标程序集。

转到解决方案配置,对于每个项目,选择“目标平台”为x86。从所有项目中引用x86 SQLite程序集。这就是我们如何在Win7x64 dev机器上设置几个项目,NCrunch,R#,dotCover都表现良好。