简体   繁体   English

从命令行运行 MSTest 时出现 Fluent NNhibernate 异常

[英]Fluent NNhibernate Exception when running MSTest from commandline

I'm writing some unit tests for Fluent NHibernate mappings (for the first time).我正在为 Fluent NHibernate 映射编写一些单元测试(第一次)。 When run in visual studio they run perfectly fine.在 Visual Studio 中运行时,它们运行得非常好。

This is using Resharpers Unit Test window or the built in Visual Studio one.这是使用 Resharpers 单元测试窗口或内置的 Visual Studio 窗口。

The problem is when the unit tests are run from MSTest:问题是当单元测试从 MSTest 运行时:

mstest /testcontainer:Tests.MyProject.dll

The unit tests fail...单元测试失败...

The only error I get from the trx file thats generated is:我从生成的 trx 文件中得到的唯一错误是:

BlockquoteUnit Test Adapter threw exception: Type is not resolved for member 'FluentNHibernate.Cfg.FluentConfigurationException,FluentNHibernate, Version=1.2.0.694, Culture=neutral, PublicKeyToken=8aa435e3cb308880'.. BlockquoteUnit 测试适配器抛出异常:类型未解析成员 'FluentNHibernate.Cfg.FluentConfigurationException,FluentNHibernate, Version=1.2.0.694, Culture=neutral, PublicKeyToken=8aa435e3cb308880'..

Which doesn't help... I can't debug the code because it works perfectly fine in visual studio, and the error message in the test file doesn't give me any information...这没有帮助......我无法调试代码,因为它在visual studio中运行良好,并且测试文件中的错误消息没有给我任何信息......

The code around creating the session is:创建会话的代码是:

    public class InMemoryDatabaseTest : IDisposable
    {
        private Configuration _configuration;
        private ISessionFactory _sessionFactory;
        protected ISession _session;

        public InMemoryDatabaseTest(Assembly assemblyContainingMappedType)
        {
            if (_configuration == null)
                _sessionFactory = CreateSessionFactory(assemblyContainingMappedType);

            _session = _sessionFactory.OpenSession();

            new SchemaExport(_configuration).Execute(false, true, false, _session.Connection, Console.Out);
        }

        private ISessionFactory CreateSessionFactory(Assembly assemblyContainingMappedType)
        {
            return Fluently.Configure()
                .Database(SQLiteConfiguration.Standard.InMemory)
                .Mappings(m => m.FluentMappings.AddFromAssembly(assemblyContainingMappedType))
                .ExposeConfiguration(cfg => _configuration = cfg)
                .BuildSessionFactory();
        }

        public void Dispose()
        {
            _session.Dispose();
        }
    }

I'm not sure if this is the correct way of creating the session for unit testing tho.我不确定这是否是为单元测试创​​建会话的正确方法。

Anyone got any idea what's wrong :(任何人都知道出了什么问题:(

I solved this problem.我解决了这个问题。 Turns out it was a PEBKAC problem.原来这是一个PEBKAC问题。

For the test configuration I needed to add the System.Data.Sqlite assembly to the configuration so that it got copied to the TestResult folder prior to the test being run.对于测试配置,我需要将 System.Data.Sqlite 程序集添加到配置中,以便在运行测试之前将其复制到 TestResult 文件夹中。

So the FluentNHibernate Configuration exception was that the Sqlite assembly didn't exist.所以 FluentNHibernate 配置异常是 Sqlite 程序集不存在。

Adding the assembly, the test ran in the console and now runs on the integration builds.添加程序集,测试在控制台中运行,现在在集成版本上运行。 YAY.好极了。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM