Run a single test method with PHPUnit

vendor/bin/phpunit --filter testRefundRestoresStock tests/OrderTest.php

# every method matching a pattern, across the whole suite
vendor/bin/phpunit --filter '/Refund/'

# or by the @group annotation on the method
vendor/bin/phpunit --group checkout