acc-suggest-testability-improvements
Installation
SKILL.md
Testability Improvement Suggestions
Provide actionable suggestions to improve code testability.
Improvement Categories
1. Extract Interface for Dependencies
// BEFORE: Concrete dependency
class PaymentProcessor
{
public function __construct(
private StripeGateway $gateway, // Concrete class
) {}
}
// Test problem: Must mock StripeGateway internals