Small groovy tweaks on junit cucumber test runner.

This commit is contained in:
Marco Vermeulen
2013-11-16 17:22:20 +00:00
parent 745b8def3f
commit 437876ffa1

View File

@@ -3,7 +3,7 @@ package gvm
import cucumber.api.junit.Cucumber
import org.junit.runner.RunWith
@RunWith(Cucumber.class)
@RunWith(Cucumber)
@Cucumber.Options(
format=["pretty", "html:build/reports/cucumber"],
strict=true,
@@ -11,5 +11,4 @@ import org.junit.runner.RunWith
glue=["src/test/steps"],
tags=["~@manual", "~@review"]
)
public class RunCukesTest {
}
class RunCukesTest {}