using OpenTap; namespace SeqEditor.Util { public class UIPlanManager { private Dictionary cache = new Dictionary(); public string TryOpenPlan(string path) { if (cache.ContainsKey(path)) return cache[path].Name; var plan = TestPlan.Load(path); if (plan == null) return null; cache[path] = plan; return plan.Name; } } }