Skip to content
msuarz edited this page Jan 22, 2011 · 4 revisions
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()
{
}
Clone this wiki locally