public description()
 {
     this.typeField = descriptiontype.text;
 }
 public AllureDescriptionAttribute(string value, descriptiontype type)
 {
     Value = new description(type, value);
 }
 public description(descriptiontype type, string value)
 {
     typeField = type;
     valueField = value;
 }
 public description()
 {
     this.typeField = descriptiontype.text;
 }
Example #5
0
 public description(descriptiontype type, string value)
 {
     typeField  = type;
     valueField = value;
 }
 public AllureDescriptionAttribute(string value, descriptiontype type)
 {
     Value = new description(type, value);
 }