Trying to run grouped Unit tests from a customer Laravel command.
But alas it ignores the group setting, running all the tests.
Trying to replicate:
php artisan test --group mariadb
with:
Artisan::call('test',['--group' => ['mariadb'], ]);
in addition, how do you take them output from dump(Artisan::output()); And displaying it with colour. Basically I want to run number of grouped tests from a command and display the output, maybe save to a file.