c# – TFS伪造构建单元测试失败

前端之家收集整理的这篇文章主要介绍了c# – TFS伪造构建单元测试失败前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我们有一个VS2013 .net 5.0解决方案(VS2013 Premium),所有单元测试都在本地传递正常,但是在TFS Build中使用此类似或类似的异常运行VS测试加载器时未通过多次测试:System.TypeLoadException:无法加载类型’System.Diagnostics .Fakes.ShimEventLog’来自程序集’System.4.0.0.0.Fakes,Version = 4.0.0.0,Culture = neutral,PublicKeyToken = 0ae41878053f6703′.
这是一个失败测试的例子:
[TestMethod]
    public void WriteToEventLogTest_HappyPath()
    {
        EventLogEntryType eTypeInfo = EventLogEntryType.Information;
        bool sourceExistCalled = false;
        bool writeEntrycalled = false;

        using (ShimsContext.Create())
        {
            ShimEventLog.SourceExistsString = s =>
            {
                sourceExistCalled = true;
                return true;
            };

            ShimEventLog.AllInstances.WriteEntryStringEventLogEntryType = (@this,str,et) =>
            {
                writeEntrycalled = true;
            };

            Logging.WriteToEventLog(IpAddress,eTypeInfo);
            Assert.IsTrue(sourceExistCalled,"SourceExist() not called");
            Assert.IsTrue(writeEntrycalled,"WriteEntry() not called");
        }
    }`

我们使用在Windows Server 2012 R2上运行的TFS 2013更新5.有什么可能导致这个问题吗?我们是否应该将TFS更新到最新的更新5?

解决方法

通过在解决方案级别上的测试项目之间共享伪造配置文件解决问题
原文链接:https://www.f2er.com/csharp/99066.html

猜你在找的C#相关文章