コード例 #1
0
 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;
 }
コード例 #2
0
 public ConcernObservation(BDDStyleName name, bool pending)
 {
     this.name = name;
     if (pending)
     {
         this.name = new BDDStyleName("[PENDING] " + name.name);
     }
 }
コード例 #3
0
 public ConcernObservation(BDDStyleName name, bool success)
 {
     this.name = name;
     this.success = success;
 }