Inheritance: ITestPart
コード例 #1
0
ファイル: UsageGraph.cs プロジェクト: MotherGoose/storyteller
 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);
 }
コード例 #4
0
        public void Tags(Tags tags)
        {
            withNewLeaf(tags, Icon.Tags, node =>
            {
                node.AddText(tags.Text.TrimToLength(40, "..."));
                node.ToolTip = tags.Text;

                addRearrangeCommands(node);
            });
        }
コード例 #5
0
ファイル: Tags.cs プロジェクト: adymitruk/storyteller
 public bool Equals(Tags obj)
 {
     if (ReferenceEquals(null, obj)) return false;
     if (ReferenceEquals(this, obj)) return true;
     return Equals(obj.Text, Text);
 }
コード例 #6
0
ファイル: TestParser.cs プロジェクト: GaryLCoxJr/StoryTeller2
 void ITestVisitor.WriteTags(Tags tags)
 {
     if (isLatched) return;
     _stream.Tags(tags);
 }