19.1. Test count based batch strategy

By default, test cases are divided equally among batches. This could be inefficient if some test cases have more tests than others. In such situations, a different batch strategy, DIVIDE_BY_TEST_COUNT can be defined using the system property thucydides.batch.strategy. This strategy will evenly distribute test cases across batches based on number of test methods in each test case.

mvn verify -Dthucydides,batch.strategy=DIVIDE_BY_TEST_COUNT -Dthucydides.batch.count=3 -Dthucydides.batch.number=1