• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

samsmithnz / RepoGovernance / 8721313302

17 Apr 2024 11:47AM UTC coverage: 70.032% (-0.08%) from 70.111%
8721313302

Pull #705

github

web-flow
Merge 2adb09669 into cef4d0948
Pull Request #705: Fix to tests and upgrade to ids

225 of 360 branches covered (62.5%)

Branch coverage included in aggregate %.

656 of 898 relevant lines covered (73.05%)

33.13 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

78.57
/src/RepoGovernance.Core/Models/CoverallsCodeCoverage.cs
1
namespace RepoGovernance.Core.Models
2
{
3
    public class CoverallsCodeCoverage
4
    {
5
        public string? branch { get; set; }
73✔
6
        public string? repo_name { get; set; }
73✔
7
        public string? badge_url { get; set; }
73✔
8
        public double coverage_change { get; set; }
83✔
9
        public double covered_percent { get; set; }
73✔
10
        public string coverage_change_string
11
        {
12
            get
13
            {
5✔
14
                if (coverage_change < 0)
5!
15
                {
×
16
                    return "-" + coverage_change.ToString("0");
×
17
                }
18
                else
19
                {
5✔
20
                    return "+" + coverage_change.ToString("0");
5✔
21
                }
22
            }
5✔
23
            }
24
        }
25
    }
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc