You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 14, 2018. It is now read-only.
Attribute manager provide methods Update(TestSuiteStartedEvent evt) and Update(TestCaseStartedEvent evt) to update events base on following attributes:
AllureTitleAttribute
AllureDescriptionAttribute
AllureSeverityAttribute
To instantiate AttributeManager list of attributes has to be passed to constructor.
Example:
[AllureTitle("Suite title")][AllureDescription("Suite description",descriptiontype.text)][AllureSeverity(severitylevel.critical)][TestFixture]publicclassAttachmentsTests{[AllureTitle("Test case title")][AllureDescription("Test case description",descriptiontype.html)][AllureSeverity(severitylevel.critical)][Test]publicvoidAttachmentsTest(stringextension,stringmime){/* ... */}}