I have two groups of feature files which are to run in sequence. Each group can run its feature files in parallel. Tried the following
Results results_1 = Runner.path("classpath:group1").tags("~@ignore").parallel(2);
assertEquals(0, results_1.getFailCount(), results_1.getErrorMessages());
Results results_2 = Runner.path("classpath:group2").tags("~@ignore").parallel(2);
assertEquals(0, results_2.getFailCount(), results_2.getErrorMessages());
Am I correct in assuming this always runs in the above order ?
And how do I consolidate it into a single report ?