WritePreview() 공개 메소드

public WritePreview ( ITestContext context ) : void
context ITestContext
리턴 void
예제 #1
0
        void ITestStream.SetVerification(SetVerification verification, IStep step)
        {
            var container = _document.Current.JoinTagAtEnd <TableContainerTag>();

            var tag = new StoryTellerTableTag(verification, step);

            tag.WritePreview(_context);

            container.Add(verification.Label, tag);
        }
예제 #2
0
        void ITestStream.Table(Table table, IStep step)
        {
            var container = _document.Current.JoinTagAtEnd <TableContainerTag>();

            var tag = new StoryTellerTableTag(table, step);

            tag.WritePreview(_context);

            container.Add(table.Label, tag);
        }
예제 #3
0
        void ITestStream.Table(Table table, IStep step)
        {
            var container = _document.Current.JoinTagAtEnd<TableContainerTag>();

            var tag = new StoryTellerTableTag(table, step);
            tag.WritePreview(_context);

            container.Add(table.Label, tag);
        }
예제 #4
0
        void ITestStream.SetVerification(SetVerification verification, IStep step)
        {
            var container = _document.Current.JoinTagAtEnd<TableContainerTag>();

            var tag = new StoryTellerTableTag(verification, step);
            tag.WritePreview(_context);

            container.Add(verification.Label, tag);
        }
예제 #5
0
        void ITestStream.Table(Table table, IStep step)
        {
            var tag = new StoryTellerTableTag(table, step);
            tag.WritePreview(_context);

            _document.Add(tag);
        }
예제 #6
0
        void ITestStream.SetVerification(SetVerification verification, IStep step)
        {
            var tag = new StoryTellerTableTag(verification, step);
            tag.WritePreview(_context);

            _document.Add(tag);
        }