We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Feature: Tags In order to allow scenario classifications Raconteur should allow to place Tags on Scenarios
@tag Scenario: Single Tag
[TestMethod] [TestCategory("tag")] public void SingleTag() { }
@slow @hits db @avoid in ci Scenario: Multiple Tags
[TestMethod] [TestCategory("slow")] [TestCategory("hits db")] [TestCategory("avoid in ci")] public void MultipleTags() { }