Repository: isis Updated Branches: refs/heads/master eb9d741c5 -> d257b060a
Replace deprecated @Cucumber.Options with @CucumberOptions Project: http://git-wip-us.apache.org/repos/asf/isis/repo Commit: http://git-wip-us.apache.org/repos/asf/isis/commit/d257b060 Tree: http://git-wip-us.apache.org/repos/asf/isis/tree/d257b060 Diff: http://git-wip-us.apache.org/repos/asf/isis/diff/d257b060 Branch: refs/heads/master Commit: d257b060a3e029ea77391ba95badf731b261cc36 Parents: eb9d741 Author: Martin Tzvetanov Grigorov <[email protected]> Authored: Sun Feb 22 23:43:17 2015 +0200 Committer: Martin Tzvetanov Grigorov <[email protected]> Committed: Sun Feb 22 23:43:17 2015 +0200 ---------------------------------------------------------------------- .../src/test/java/domainapp/integtests/specs/RunSpecs.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/isis/blob/d257b060/example/application/simpleapp/integtests/src/test/java/domainapp/integtests/specs/RunSpecs.java ---------------------------------------------------------------------- diff --git a/example/application/simpleapp/integtests/src/test/java/domainapp/integtests/specs/RunSpecs.java b/example/application/simpleapp/integtests/src/test/java/domainapp/integtests/specs/RunSpecs.java index 59e4603..d19cb37 100644 --- a/example/application/simpleapp/integtests/src/test/java/domainapp/integtests/specs/RunSpecs.java +++ b/example/application/simpleapp/integtests/src/test/java/domainapp/integtests/specs/RunSpecs.java @@ -16,6 +16,7 @@ */ package domainapp.integtests.specs; +import cucumber.api.CucumberOptions; import cucumber.api.junit.Cucumber; import org.junit.runner.RunWith; @@ -25,7 +26,7 @@ import org.junit.runner.RunWith; * Runs scenarios in all <tt>.feature</tt> files (this package and any subpackages). */ @RunWith(Cucumber.class) [email protected]( +@CucumberOptions( format = { "html:target/cucumber-html-report" ,"json:target/cucumber.json"
