class IsActiveRuleTest extends TestCase
{
private IsActiveRule $rule;
protected function setUp(): void
{
$this->rule = new IsActiveRule();
}
/**
* @dataProvider getCustomerScopeTestData
*/
public function testValidateRule(
bool $isActive,
bool $customerActiveValue,
bool $expectedValue,
bool $noCustomer
): void {