4

I have a gherkin scenario similar to following:

Scenario Outline: Test some behaviour
    Given a set of preconditions
    When an event occurs
    Then my application has to behave in a particular manner
    And respond as expected

When I execute this scenario my report says

0 Scenarios, 0 steps executed.

How ever when I execute a scenario with Examples, my setup works fine.

Am I missing something?

EzLo
  • 13,780
  • 10
  • 33
  • 38

1 Answers1

5

Scenario Outline is specific to Examples. If you swap to just Scenario you should be fine.

Taelus
  • 267
  • 1
  • 6
  • 15