I'm trying to migrate my cucumber tests from cucumber-junit
to cucumber-junit-platform-engine
to be able to use new platform features. How do I redefine my runner to use old @CucumberOptions
. I'm investigating the issue but can't seem to find the proper way yet.
Before I used such options:
@CucumberOptions(
plugin = ...,
features = ...,
tags = ...,
glue = ...
)
Is there a straighforward way to migrate it to platform-engine?
plugin
option, had to declare it incucumber.properties
, undersrc/test/resources
ascucumber.plugin=<package_under_src_test_java>.<class_name>
– Kostman