Exemplo n.º 1
0
 public bool NameEquals(ITlElement other)
 {
     if ((other is TestCase) && (this.AttrName == other.AttrName))
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }
Exemplo n.º 2
0
 private string GetShortName(ITlElement elem)
 {
     return(elem.AttrName.Substring
                (0, elem.AttrName.Length >= 50 ? 50 : elem.AttrName.Length));
 }
Exemplo n.º 3
0
 public void AddChild(ITlElement tlElement)
 {
     this.ChildrenElements.Add(tlElement);
 }