Exemplo n.º 1
0
        /// <summary>
        /// Use the provided name for the hits file
        /// </summary>
        /// <param name="settings">The settings.</param>
        /// <param name="hitsFile">The name of the hits file</param>
        /// <returns>The <see cref="MiniCoverSettings"/> instance so that multiple calls can be chained</returns>
        public static MiniCoverSettings WithHitsFile(this MiniCoverSettings settings, string hitsFile)
        {
            if (settings == null)
            {
                throw new ArgumentNullException(nameof(settings));
            }

            settings.HitsFileName = hitsFile;

            return(settings);
        }
Exemplo n.º 2
0
        /// <summary>
        /// Set the --workdir for minicover
        /// </summary>
        /// <param name="settings">The settings.</param>
        /// <param name="workdir">The working directory to use for minicover</param>
        /// <returns>The <see cref="MiniCoverSettings"/> instance so that multiple calls can be chained</returns>
        /// <example>
        /// // 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");
        /// </example>
        public static MiniCoverSettings WithMiniCoverWorkingDirectory(this MiniCoverSettings settings, DirectoryPath workdir)
        {
            if (settings == null)
            {
                throw new ArgumentNullException(nameof(settings));
            }

            settings.MiniCoverWorkingDirectory = workdir;

            return(settings);
        }
Exemplo n.º 3
0
        /// <summary>
        /// Exclude files matching the specified pattern from coverage results
        /// </summary>
        /// <param name="settings">The settings.</param>
        /// <param name="pattern">The glob pattern to use when searching for source files</param>
        /// <returns>The <see cref="MiniCoverSettings"/> instance so that multiple calls can be chained</returns>
        public static MiniCoverSettings WithoutSourcesMatching(this MiniCoverSettings settings, string pattern)
        {
            if (settings == null)
            {
                throw new ArgumentNullException(nameof(settings));
            }

            settings.SourcesExcludeGlobPatterns.Add(pattern);

            return(settings);
        }
Exemplo n.º 4
0
        /// <summary>
        /// Use the specified prefix for report generation
        /// </summary>
        /// <param name="settings">The settings.</param>
        /// <param name="prefix">The report prefix</param>
        /// <returns>The <see cref="MiniCoverSettings"/> instance so that multiple calls can be chained</returns>
        /// <example>
        /// // 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");
        /// </example>
        public static MiniCoverSettings WithReportPrefix(this MiniCoverSettings settings, string prefix)
        {
            if (settings == null)
            {
                throw new ArgumentNullException(nameof(settings));
            }

            settings.ReportPrefix = prefix;

            return(settings);
        }
Exemplo n.º 5
0
        /// <summary>
        /// Set the report type to generate
        /// </summary>
        /// <param name="settings">The settings.</param>
        /// <param name="reportType">The report type or types to generate</param>
        /// <returns>The <see cref="MiniCoverSettings"/> instance so that multiple calls can be chained</returns>
        /// <example>
        /// <code>
        /// // Print results to the console and generate an XML report
        /// var settings = new MiniCoverSettings().GenerateReport(ReportType.CONSOLE | ReportType.XML);
        /// </code>
        /// </example>
        public static MiniCoverSettings GenerateReport(this MiniCoverSettings settings, ReportType reportType)
        {
            if (settings == null)
            {
                throw new ArgumentNullException(nameof(settings));
            }

            settings.ReportType = reportType;

            return(settings);
        }
Exemplo n.º 6
0
        /// <summary>
        /// Instrument test assemblies matching the specified pattern
        /// </summary>
        /// <param name="settings">The settings.</param>
        /// <param name="pattern">The glob pattern to use when searching for test assemblies</param>
        /// <returns>The <see cref="MiniCoverSettings"/> instance so that multiple calls can be chained</returns>
        public static MiniCoverSettings WithAssembliesMatching(this MiniCoverSettings settings, string pattern)
        {
            if (settings == null)
            {
                throw new ArgumentNullException(nameof(settings));
            }

            settings.AssemblyIncludePatterns.Add(pattern);

            return(settings);
        }
Exemplo n.º 7
0
        /// <summary>
        /// Fail the build if coverage is below the threshold. This is the default behavior.
        /// </summary>
        /// <param name="settings">The Settings.</param>
        /// <returns>The <see cref="MiniCoverSettings"/> instance so that multiple calls can be chained</returns>
        public static MiniCoverSettings WithFatalThreshold(this MiniCoverSettings settings)
        {
            if (settings == null)
            {
                throw new ArgumentNullException(nameof(settings));
            }

            settings.NonFatalThreshold = false;

            return(settings);
        }
Exemplo n.º 8
0
        /// <summary>
        /// Set the coverage percentage below which the build will fail
        /// </summary>
        /// <param name="settings">The settings.</param>
        /// <param name="threshold">The failure threshold to use</param>
        /// <returns>The <see cref="MiniCoverSettings"/> instance so that multiple calls can be chained</returns>
        public static MiniCoverSettings WithThreshold(this MiniCoverSettings settings, float threshold)
        {
            if (settings == null)
            {
                throw new ArgumentNullException(nameof(settings));
            }

            settings.FailureThreshold = threshold;

            return(settings);
        }
Exemplo n.º 9
0
        /// <summary>
        /// Set settings for coveralls report generation
        /// </summary>
        /// <param name="settings">The settings.</param>
        /// <param name="coveralls">Settings for coveralls</param>
        /// <returns>The <see cref="MiniCoverSettings"/> instance so that multiple calls can be chained</returns>
        /// <example>
        /// // Publish coverage to Coveralls from travis-ci
        /// var settings = new MiniCoverSettings().GenerateReport(ReportType.COVERALLS).WithCoverallsSettings(c => c.UseTravisDefaults());
        /// </example>
        public static MiniCoverSettings WithCoverallsSettings(this MiniCoverSettings settings, Action <CoverallsSettings> coveralls)
        {
            if (settings == null)
            {
                throw new ArgumentNullException(nameof(settings));
            }

            settings.Coveralls = new CoverallsSettings();
            coveralls.Invoke(settings.Coveralls);

            return(settings);
        }
Exemplo n.º 10
0
 /// <summary>
 /// Set settings for coveralls report generation
 /// </summary>
 /// <param name="settings">The settings.</param>
 /// <param name="coveralls">Settings for coveralls</param>
 /// <returns>The <see cref="MiniCoverSettings"/> instance so that multiple calls can be chained</returns>
 public static MiniCoverSettings WithCoverallsSettings(this MiniCoverSettings settings, CoverallsSettings coveralls) =>
 settings.WithCoverallsSettings((Action <CoverallsSettings>)null);