

Src/test/resources/hellocucumber/is_it_friday_yet.feature src/test/resources/hellocucumber/is_it_friday_yet.feature features/is_it_friday_yet.feature features/is_it_friday_yet.feature One concrete example would be that Sunday isn’t Friday. Src/test/resources/hellocucumber features features In Cucumber, an example is called a scenario. Try running an Example Mapping workshop in your team to Finally, delete the StepDefinitions.java class (or even the java directory).Copy the import statements from StepDefinitions.java to StepDefs.kt you’ll need them later.Create a Kotlin class called StepDefs inside the hellocucumber package.Now you can delete the RunCucumberTest.java class.Your RunCucumberTest.kt class should now look like this: package hellocucumber Otherwise, you’ll have to write your own. If you are using IntelliJ IDEA, it will offer to translate the Java code to Kotlin code. Copy the annotations from the RunCucumberTest.java class to the RunCucumberTest.kt class.IntelliJ IDEA might tell you that Kotlin is not configured click “Configure”. Create a Kotlin class called RunCucumberTest inside the hellocucumber package.

Create the hellocucumber package inside the kotlin directory.In IntelliJ IDEA, you can do so by right-clicking on the kotlin directory and selecting “Mark Directory as” > “Test Sources Root”.

