I am writing a multi-module test automation framework where i have a parent project known as framework and 2 child modules/projects - core and customer. customer module is dependent on core module
I am using cucumber-junit to write feature files. Both core and customer modules will have feature files and step definitions. Following dependencies are added in core project:
I have created a TestRunner.java file in core module as shown below:
When i run TestRunner.java as a JUnit test, it only executes the feature file in core module. The feature file in customer module do not execute.
Is there a way to execute all the feature files in all child projects / modules?
Please suggest. Thanks.