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

samsmithnz / SatisfactoryTree / 17569747743

09 Sep 2025 02:18AM UTC coverage: 89.817% (+36.9%) from 52.88%
17569747743

Pull #284

github

web-flow
Merge 3858cabe9 into e771c4f78
Pull Request #284: Reworking logic to handle imports and exports

274 of 314 branches covered (87.26%)

Branch coverage included in aggregate %.

855 of 943 new or added lines in 26 files covered. (90.67%)

855 of 943 relevant lines covered (90.67%)

1804.95 hits per line

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

42.11
/src/SatisfactoryTree.Logic/Models/Building.cs
1
namespace SatisfactoryTree.Logic.Models
2
{
3
    public class Building
4
    {
5
        public Building(string name)
12,444✔
6
        {
12,444✔
7
            Name = name;
12,444✔
8
        }
12,444✔
9

10
        public string Name { get; set; }
19,333✔
11
        public double Power { get; set; }
13,768✔
12
        public double? MinPower { get; set; }
1,404✔
13
        public double? MaxPower { get; set; }
1,404✔
14

15
        public override bool Equals(object? obj)
NEW
16
        {
×
NEW
17
            if (obj is Building otherBuilding)
×
NEW
18
            {
×
NEW
19
                return Name == otherBuilding.Name;
×
20
            }
NEW
21
            return false;
×
NEW
22
        }
×
23

24
        public override int GetHashCode()
NEW
25
        {
×
NEW
26
            return Name.GetHashCode();
×
NEW
27
        }
×
28
    }
29
}
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