I have a specflow API service testing scenario that look somewhat like below. Weekend = saturday and sunday . We are using Nunit Framework
Scenario Outline: Weekend test scenario for calculator scervice
Given today is weekend
And calculator with amounts <value1> , <value2> and <operator>
When calculator service is called
Then amount and operator field is editable
Examples:
| value1 | value2 | operator|
| 200 | 300 | plus |
I want this test to get ignored on run time - if I am running this test in weekday. How do I achieve this ?