public Concern(Type target_concern, string story_key, BDDStyleName concern_name, IEnumerable<IConcernObservation> observations) { this.all_observations = observations; this.story_key = story_key; this.concerned_with = target_concern; this.name = concern_name; }
public ConcernObservation(BDDStyleName name, bool pending) { this.name = name; if (pending) { this.name = new BDDStyleName("[PENDING] " + name.name); } }
public ConcernObservation(BDDStyleName name, bool success) { this.name = name; this.success = success; }