I want to generate a test suite for a whole jar with Evosuite.
When I use for example the following command :
$EVOSUITE0 -target commons-cli-1.5.0.jar --generateSuite -generateRandom --continuous=execute -Dctg_time=21
or the following command:
$EVOSUITE0 -target commons-cli-1.5.0.jar -generateSuite -generateRandom -Dreport_dir=results -Dsearch_budget=180 -Dstopping_condition=MaxTime -Dshow_progress=false
Whether it is for Continuous Test Generation (CTG) or for default generation, Evosuite generates test suites for each class contained in the jar.
I would like to know if it is possible to generate one test suite for the whole jar. In other words, is it possible to have an aggregated test suite?