WritePreview() public method

public WritePreview ( ITestContext context ) : void
context ITestContext
return void
Example #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);
        }
Example #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);
        }
Example #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);
        }
Example #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);
        }
Example #5
0
        void ITestStream.Table(Table table, IStep step)
        {
            var tag = new StoryTellerTableTag(table, step);
            tag.WritePreview(_context);

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

            _document.Add(tag);
        }