MiniCoverSettingsExtensions.

WithReportPrefix(MiniCoverSettings, string) Method

Summary

Use the specified prefix for report generation

Syntax

public static MiniCoverSettings WithReportPrefix(this MiniCoverSettings settings, string prefix)

Examples

// Genarate an html report in myCoverage-html/ and an xml report in myCoverage.xml var settings = new MiniCoverSettings().GenerateReport(ReportType.HTML | ReportType.XML).WithReportPrefix("myCoverage");

Parameters

Name Type Description
settings MiniCoverSettings The settings.
prefix string The report prefix

Return Value

Type Description
MiniCoverSettings The MiniCoverSettings instance so that multiple calls can be chained