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

samsmithnz / SatisfactoryTree / 17567158789

08 Sep 2025 11:39PM UTC coverage: 89.111% (+36.2%) from 52.88%
17567158789

Pull #284

github

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

244 of 282 branches covered (86.52%)

Branch coverage included in aggregate %.

776 of 863 new or added lines in 25 files covered. (89.92%)

779 of 866 relevant lines covered (89.95%)

468.95 hits per line

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

0.0
/src/SatisfactoryTree.Logic/Extraction/RawRecipe.cs
1
namespace SatisfactoryTree.Logic.Extraction
2
{
NEW
3
    public class RawRecipe(string? className,
×
NEW
4
        string? displayName,
×
NEW
5
        List<KeyValuePair<string?, decimal>>? ingredients,
×
NEW
6
        List<KeyValuePair<string?, decimal>>? products,
×
NEW
7
        string? producedIn,
×
NEW
8
        decimal manufactoringDuration,
×
NEW
9
        bool isAlternateRecipe)
×
10
    {
11
        //Common properties
NEW
12
        public string? ClassName { get; set; } = className;
×
NEW
13
        public string? DisplayName { get; set; } = displayName;
×
14

15
        //Recipe properties
NEW
16
        public List<KeyValuePair<string?, decimal>>? Ingredients { get; set; } = ingredients;
×
NEW
17
        public List<KeyValuePair<string?, decimal>>? Products { get; set; } = products;
×
NEW
18
        public string? ProducedIn { get; set; } = producedIn;
×
NEW
19
        public decimal ManufactoringDuration { get; set; } = manufactoringDuration;
×
NEW
20
        public bool IsAlternateRecipe { get; set; } = isAlternateRecipe;
×
21
    }
22
}
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