Open
Description
[TestFixture]
public class ResetScenario
{
private Stopwatch _stopwatch;
public void GivenX(int a)
{
}
public void AndGivenY()
{
}
public void WhenFoo()
{
}
public void ThenWhatever()
{
}
public void AndSomething()
{
}
[Test]
public void Execute()
{
var examples = new ExampleTable("a")
{
1,
2
};
this.WithExamples(examples)
.BDDfy();
}
}
Scenario: Reset scenario
Given x
And y
When foo
Then whatever
And y
And something