Inheritance: HtmlTags.HtmlTag
Exemplo n.º 1
0
        void ITestStream.StartSection(Section section, FixtureGraph fixture)
        {
            var sectionTag = new SectionTag(section, fixture);

            _document.Add(sectionTag);

            _document.PushWithoutAttaching(sectionTag.Body);
        }
Exemplo n.º 2
0
        void ITestStream.StartSection(Section section, FixtureStructure fixture)
        {
            var sectionTag = new SectionTag(section, fixture);
            sectionTag.WriteResults(_context);

            _document.Add(sectionTag);

            _document.PushWithoutAttaching(sectionTag.Body);
        }
Exemplo n.º 3
0
        void ITestStream.StartSection(Section section, FixtureGraph fixture)
        {
            var sectionTag = new SectionTag(section, fixture);

            _document.Add(sectionTag);

            _document.PushWithoutAttaching(sectionTag.StepHolder);
        }