我已经配置了一个Nunit测试运行器构建步骤,该步骤成功运行我的testsuite,指向我的.Net解决方案的测试子项目,例如。溶液/ Solution.Test / bin中/调试/ Solution.Test.dll。
我的解决方案结构如下:
在测试项目中引用了Lib和Model dll。
然后我在没有任何汇编过滤器的情况下打开dotCover,它正确地对上面的测试dll进行了代码覆盖率分析。
然后我添加了一个过滤器, - :Solution.Test,并将+:Solution.Lib和+:Solution.Model添加到程序集过滤器并运行构建配置,build.log报告了以下内容:
Generate dotCover HTML report
[17:15:41][Generate dotCover HTML report] No source files were found under the build checkout directory W:\TeamCity\Install\buildAgent\work\7136872008cbf3bf. No source files will be included in dotCover report as source code of classes.
No executable code was detected.
The issue could be caused by one of the following:
- Include / exclude patterns are incorrect
- Assemblies are compiled without debugging information
- .pdb files are not available
- Visual Studio code coverage is enabled for MSTest
- .testrunconfig is used for MSTest and Visual Studio code coverage is not disabled (CodeCoverage section with enable="true" is present)
所以我想知道上面的配置,如果路径正确,我做错了什么?
答案 0 :(得分:5)
所以,我自己就是经历过这个。虽然这可能不是你的问题,但我的设置中有一个错误,让我方式太长时间无法弄清楚。
由于我的应用程序的命名空间(和项目文件名)是Organization.Product
,我在测试过滤器中使用了它。但是,它是您要过滤的程序集的名称。
我的程序集的输出名称是Product name with spaces
。让人惊讶。
无论如何,我能够使用更简单的过滤器来实现它:
-:*Test*
您的过滤器可能只是:
-:*.Test
我还要说你不需要同时进行包含和排除。如果您进行排除,则会包含其他所有内容。如果你进行了包含,那么其他一切都将被排除在外。