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

loresoft / KickStart / 17529667504

07 Sep 2025 02:14PM UTC coverage: 60.921%. Remained the same
17529667504

push

github

pwelter34
reformat code base

162 of 364 branches covered (44.51%)

Branch coverage included in aggregate %.

634 of 951 new or added lines in 72 files covered. (66.67%)

4 existing lines in 4 files now uncovered.

658 of 982 relevant lines covered (67.01%)

20.4 hits per line

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

0.0
/test/Test.Core/MailingAddress.cs
1
using System.Text;
2

3
namespace Test.Core;
4

5
public class MailingAddress
6
{
NEW
7
    public ContactType Type { get; set; }
×
NEW
8
    public string Address1 { get; set; }
×
NEW
9
    public string Address2 { get; set; }
×
NEW
10
    public string Address3 { get; set; }
×
NEW
11
    public string City { get; set; }
×
NEW
12
    public string State { get; set; }
×
NEW
13
    public string Zip { get; set; }
×
14

15

16
    public override string ToString()
17
    {
NEW
18
        var b = new StringBuilder();
×
NEW
19
        if (Address1 != null)
×
NEW
20
            b.Append(Address1)
×
NEW
21
                .Append(", ");
×
22

NEW
23
        if (City != null)
×
NEW
24
            b.Append(City)
×
NEW
25
                .Append(", ");
×
26

27

NEW
28
        if (State != null)
×
NEW
29
            b.Append(State)
×
NEW
30
                .Append(" ");
×
31

NEW
32
        if (Zip != null)
×
NEW
33
            b.Append(Zip);
×
34

NEW
35
        return b.ToString();
×
36
    }
37
}
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

© 2026 Coveralls, Inc