Skip to content

Commit

Permalink
Merge pull request #3179 from devlead/feature/gh-3125
Browse files Browse the repository at this point in the history
GH3125: Adds ReportGenerator missing report types
  • Loading branch information
augustoproiete authored Feb 21, 2021
2 parents 362db0e + 2026736 commit bd322c9
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,10 @@ public void Should_Set_Reports_And_Target_Directory()
[InlineData("MHtml", 15)]
[InlineData("SonarQube", 16)]
[InlineData("HtmlInline_AzurePipelines_Dark", 17)]
[InlineData("Clover", 18)]
[InlineData("JsonSummary", 19)]
[InlineData("lcov", 20)]
[InlineData("TeamCitySummary", 21)]
public void Should_Set_Report_Types(string expected, int enumValue)
{
// Given
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,38 @@ public enum ReportGeneratorReportType
/// <remarks>
/// Requires ReportGenerator 4.0.10+
/// </remarks>
HtmlInline_AzurePipelines_Dark = 17
HtmlInline_AzurePipelines_Dark = 17,

/// <summary>
/// Creates xml report in Clover format.
/// </summary>
/// <remarks>
/// Requires ReportGenerator 4.0.6+
/// </remarks>
Clover = 18,

/// <summary>
/// Creates summary report in JSON format.
/// </summary>
/// <remarks>
/// Requires ReportGenerator 4.5.2+
/// </remarks>
JsonSummary = 19,

/// <summary>
/// Creates summary report in lcov format.
/// </summary>
/// <remarks>
/// Requires ReportGenerator 4.3.0+
/// </remarks>
lcov = 20,

/// <summary>
/// Outputs summary report as TeamCity statistics messages.
/// </summary>
/// <remarks>
/// Requires ReportGenerator 4.1.3+
/// </remarks>
TeamCitySummary = 21
}
}

0 comments on commit bd322c9

Please sign in to comment.