我目前正在使用Visual Studio Enterprise 2015版本14.0.25431.01更新3并使用MS c#示例程序来测试内置单元测试和代码覆盖功能。单元测试工作得非常好,但每次我在测试完成后尝试启动代码覆盖时,都会收到一条错误消息:
“生成空结果:没有检测到二进制文件。确保测试已运行,加载了所需的二进制文件,具有匹配的符号文件,并且未通过自定义设置排除。有关详细信息,请参阅:http://go.microsoft.com/fwlink/?LinkID=253731。”。
当然,我检查了链接以进行故障排除,并完成了所有列出的问题,但没有任何成功。我还尝试了几个应该在早期版本中工作的解决方案(使用命令提示来检测二进制文件或运行代码覆盖率,删除测试结果文件夹和VS解决方案用户选项.suo文件等),但仍然没有找到任何东西对我的案子有用。
是否有人遇到同样的问题或知道可能的解决方案?
非常感谢你!
最佳,
史蒂夫
PS:我使用的是标准设置,但所有优化都已关闭。我的测试项目与我想测试的源项目位于同一个解决方案中。以下是示例程序的代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace codecoverage
{
public class Program
{
static void Main(string[] args)
{
Program prog = new Program();
prog.TestFunction(0);
}
public int TestFunction(int input)
{
if (input > 0)
{
return 1;
}
else
{
return 0;
}
}
}
}
测试类定义如下:
using Microsoft.VisualStudio.TestTools.UnitTesting;
using codecoverage;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace codecoverage.Tests
{
[TestClass()]
public class ProgramTests
{
[TestMethod()]
public void TestFunctionTest2()
{
Program target = new Program();
int input = 1;
int expected = 1;
int actual;
actual = target.TestFunction(input);
Assert.AreEqual(expected, actual, "CodeCoverage.Program.TestFunction did not return the expected value.");
}
}
}
答案 0 :(得分:0)
我一直在寻找解决方案。并发现它实际上是一个PDB文件问题。您需要做的就是转到此链接器选项卡 - >调试。并将选项“生成完整程序数据库文件”设置为是。这是由于VS2015为/ Debug:FASTLINK引入的变化。将其设置为“是”将覆盖它。