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 {
}