phpunit

Updated: 02 November 2023

Filter

For annotated test methods

/**
 * @group regression
 * @group bug2204
 */
public function testSomethingElse(): void
{
}
docker compose exec symfony bin/phpunit --group bug2204

Run all tests in one test class

bin/phpunit --testdox --filter ProposalControllerTest

Leave a comment