• 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

0.0
/src/SatisfactoryTree.Logic/Models/Factory.cs
1
using SatisfactoryTree.Logic.Extraction;
2
using System;
3
using System.Collections.Generic;
4
using System.Linq;
5
using System.Text;
6
namespace SatisfactoryTree.Logic.Models
7
{
8
    public class Factory
9
    {
NEW
10
        public List<RawPart> Imports { get; set; }
×
NEW
11
        public List<RawPart> Surplus { get; set; }
×
NEW
12
        public List<RawPart> PartGoals { get; set; }
×
NEW
13
        public List<RawPart> Parts { get; set; }
×
14

NEW
15
        public Factory()
×
NEW
16
        {
×
NEW
17
            Imports = new List<RawPart>();
×
NEW
18
            Surplus = new List<RawPart>();
×
NEW
19
            PartGoals = new List<RawPart>();
×
NEW
20
            Parts = new List<RawPart>();
×
NEW
21
        }
×
22
    }
23
}
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