Reputation: 1
When I run my Cucumber test runner file on Intellij IDEA, I am not able to see any output on the console except the message "Process finished with exit code 0". The actual code will not run can anyone please help me?
mvn test error:
Project structure:
Entire Screenshot:
Upvotes: 0
Views: 619
Reputation: 8676
There are several places to fix in your project:
tests
but not in main
my.test.package
then your step definition code has to be placed either in my.test.package
or to the sub-packagesmy.test.package
then your feature files have to be placed to the folder resources/my/test/package
or sub-folders.Upvotes: 1