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

samsmithnz / SatisfactoryTree / 17901390351

22 Sep 2025 12:51AM UTC coverage: 68.078% (+0.3%) from 67.811%
17901390351

push

github

web-flow
Merge pull request #310 from samsmithnz/FixingImportsAgain

Added new imported item type

427 of 736 branches covered (58.02%)

Branch coverage included in aggregate %.

91 of 185 new or added lines in 10 files covered. (49.19%)

7 existing lines in 3 files now uncovered.

1149 of 1579 relevant lines covered (72.77%)

1172.07 hits per line

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

80.0
/src/SatisfactoryTree.Logic/Models/ExportedItem.cs
1
namespace SatisfactoryTree.Logic.Models
2
{
3
    public class ExportedItem
4
    {
5
        public Item Item { get; set; } = new();
42✔
6
        public double PartQuantityExported { get; set; } = 0;
26✔
7

8
        public ExportedItem(Item item)
8✔
9
        {
8✔
10
            if (item == null)
8!
NEW
11
                throw new ArgumentNullException(nameof(item));
×
12
            Item = item;
8✔
13
        }
8✔
14
    }
15
}
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