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

samsmithnz / SatisfactoryTree / 17925206634

22 Sep 2025 06:44PM UTC coverage: 66.166% (-2.0%) from 68.215%
17925206634

Pull #314

github

web-flow
Merge b687d718f into 9b5cf3f1d
Pull Request #314: Add "Add exported Part" button functionality to factory exported parts section

427 of 754 branches covered (56.63%)

Branch coverage included in aggregate %.

0 of 54 new or added lines in 3 files covered. (0.0%)

2 existing lines in 2 files now uncovered.

1159 of 1643 relevant lines covered (70.54%)

1126.78 hits per line

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

0.0
/src/SatisfactoryTree.Web/Services/PlanService.cs
1
using SatisfactoryTree.Logic.Models;
2

3
namespace SatisfactoryTree.Web.Services
4
{
5
    public class PlanService
6
    {
7
        private Plan? _plan;
8
        private FactoryCatalog? _factoryCatalog;
9
        
10
        public event Action? PlanChanged;
11

12
        public Plan? Plan 
13
        { 
14
            get => _plan; 
×
15
            set 
16
            { 
×
17
                _plan = value; 
×
18
                PlanChanged?.Invoke(); 
×
19
            } 
×
20
        }
21

22
        public FactoryCatalog? FactoryCatalog
23
        {
NEW
24
            get => _factoryCatalog;
×
NEW
25
            set => _factoryCatalog = value;
×
26
        }
27

UNCOV
28
        public bool HasPlan => _plan != null && _plan.Factories.Any();
×
29

30
        public void NotifyPlanChanged()
NEW
31
        {
×
NEW
32
            PlanChanged?.Invoke();
×
NEW
33
        }
×
34
    }
35
}
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