Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 508 Bytes

README.md

File metadata and controls

17 lines (13 loc) · 508 Bytes

cucumber-groovy-tutorial

Simple project to show cucumber and groovy configured by maven

There wasn't much problems getting this to run through intellij but maven
would not execute the tests.

In the AccountTest.groovy class adding the location of the feature files and
the location of the test steps solved this.

@RunWith(Cucumber)
@CucumberOptions(features = 'src/test/resources/features',
        glue = 'src/test/groovy/com/jonl/example/cucumber/steps')
class AccountTest {
}