Inheritance: ITestPart
Exemplo n.º 1
0
 void ITestStream.Tags(Tags tags)
 {
 }
Exemplo n.º 2
0
 public void WriteTags(Tags tags)
 {
     _section.Add(tags);
 }
Exemplo n.º 3
0
 public void WriteTags(Tags tags)
 {
     _nodes.Peek().AddChild(Tags.TAGS).WithFormattedText(tags.Text);
 }
Exemplo n.º 4
0
        public void Tags(Tags tags)
        {
            withNewLeaf(tags, Icon.Tags, node =>
            {
                node.AddText(tags.Text.TrimToLength(40, "..."));
                node.ToolTip = tags.Text;

                addRearrangeCommands(node);
            });
        }
Exemplo n.º 5
0
 public bool Equals(Tags obj)
 {
     if (ReferenceEquals(null, obj)) return false;
     if (ReferenceEquals(this, obj)) return true;
     return Equals(obj.Text, Text);
 }
Exemplo n.º 6
0
 void ITestVisitor.WriteTags(Tags tags)
 {
     if (isLatched) return;
     _stream.Tags(tags);
 }