I have a project with cucumber and maven also I am using the JUnit.
I am able to run and build my project successfully from Eclipse.
Now I want to run the t
@SpringBootApplication public class Application { public static void main(final String[] args) throws Throwable { // SpringApplication.run(TestApplication.class, args); JUnitCore.main(CucumberTest.class.getCanonicalName()); } }