Skip to content

Commit

Permalink
Removed method coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
danielpalme committed Apr 1, 2022
1 parent c2386ac commit e36c837
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -359,15 +359,15 @@ public virtual void CreateSummaryReport(IHtmlRenderer reportRenderer, SummaryRes
if (summaryResult.Assemblies.Any())
{
reportRenderer.BeginSummaryTable();
reportRenderer.BeginSummaryTable(summaryResult.SupportsBranchCoverage, true);
reportRenderer.BeginSummaryTable(summaryResult.SupportsBranchCoverage, proVersion);

foreach (var assembly in summaryResult.Assemblies)
{
reportRenderer.SummaryAssembly(assembly, summaryResult.SupportsBranchCoverage, true);
reportRenderer.SummaryAssembly(assembly, summaryResult.SupportsBranchCoverage, proVersion);

foreach (var @class in assembly.Classes)
{
reportRenderer.SummaryClass(@class, summaryResult.SupportsBranchCoverage, true);
reportRenderer.SummaryClass(@class, summaryResult.SupportsBranchCoverage, proVersion);
}
}

Expand Down

0 comments on commit e36c837

Please sign in to comment.