extent-framework / extentreports-csharp

Extent Reporting Library, .NET
http://extentreports.com
Apache License 2.0
50 stars 40 forks source link

ExtentHtmlReporter doesn't "see" Tags from the class level #59

Closed andrewlaser closed 5 years ago

andrewlaser commented 5 years ago

In the following example ExtentHtmlReporter shows only tags: TestSpecificDomain_X and TestSpecificDomain_Y, but won't show Tag CommonDomain

[TestFixture]

[TestBusinessDomain(CommonDomain)] public class BreezeDeclineMiscellaneousCases : TestBase { [TestBusinessDomain(TestSpecificDomain_X)] [Test] public void TestDecline(string firstName) {..}

    [TestBusinessDomain(TestSpecificDomain_Y)]
    [Test]
    public void TestApprove(string firstName)

{..} } image

andrewlaser commented 5 years ago

The mistake was in usage.