0

我正在尝试使用以下命令行提取覆盖范围:

 dotnet test --framework netcoreapp3.1 --no-restore --logger trx //p:CollectCoverage=true //p:CoverletOutputFormat=opencover /p:Exclude=[xunit
.*]*

但我总是得到 0% 的覆盖率: 在此处输入图像描述

这是我的 csproj 文件:

<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <TargetFramework>netcoreapp3.1</TargetFramework>
    <IsPackable>false</IsPackable>
  </PropertyGroup>

  <ItemGroup>
    <PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="3.1.0" />
    <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.2.0" />
    <PackageReference Include="Moq" Version="4.16.1" />
    <PackageReference Include="xunit" Version="2.4.1" />
    <PackageReference Include="xunit.runner.visualstudio" Version="2.4.1" />
    <PackageReference Include="coverlet.msbuild" Version="2.8.0">
      <PrivateAssets>all</PrivateAssets>
      <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
    </PackageReference>
  </ItemGroup>

  <ItemGroup>
    <ProjectReference Include="..\Worker\Worker.csproj" />
  </ItemGroup>

</Project>

我正在使用 Rider,所以运行 dotCover 我可以正常覆盖,请参阅:

在此处输入图像描述

4

0 回答 0