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

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