public override bool IncludeAttribute(TesteeProperty property)
 {
     return(true);
 }
 /// <summary>
 /// returns true if it finds an attribute with the same name and context
 /// </summary>
 /// <param name="property"></param>
 /// <returns></returns>
 public virtual bool IncludeAttribute(TesteeProperty property)
 {
     return(IncludedAttributes != null && IncludedAttributes.Exists(x => x.XMLName.Equals(property.Name, StringComparison.InvariantCultureIgnoreCase) &&
                                                                    x.Context.Equals(property.Context, StringComparison.InvariantCultureIgnoreCase)));
 }