Generates parameterized test inputs combining boundary-value, equivalence-class, and pairwise-combinatorial cases from a typed multi-input specification - produces the cross-product of cases up to a configurable strength (1-wise / 2-wise / N-wise) using all-pairs reduction so the test surface stays tractable. Emits cases in the project's test-runner-native parametrize format. Use when a function or endpoint takes 3+ inputs whose interactions matter and full Cartesian product would explode.
80
100%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
Reference detail for pairwise-test-case-generator: the reduced case set emitted in each test-runner-native parametrize format.
role,tier,feature,locale
admin,free,api_access,en-US
admin,starter,sso,ja-JP
admin,pro,audit_log,de-DE
admin,enterprise,custom_branding,ar-SA
manager,free,api_access,fr-FR
manager,starter,sso,pt-BR
...import pytest
CASES = [
("admin", "free", "api_access", "en-US"),
("admin", "starter", "sso", "ja-JP"),
("admin", "pro", "audit_log", "de-DE"),
# ... ~30 cases for 2-wise of the 4×4×5×6 space
]
@pytest.mark.parametrize("role,tier,feature,locale", CASES)
def test_user_capability(role, tier, feature, locale):
result = check_capability(role=role, tier=tier, feature=feature, locale=locale)
assert result.allowed in (True, False) # specific assertion per the business rulesconst cases = [
['admin', 'free', 'api_access', 'en-US'],
['admin', 'starter', 'sso', 'ja-JP'],
// ...
];
test.each(cases)(
'role=%s tier=%s feature=%s locale=%s',
(role, tier, feature, locale) => {
const result = checkCapability({ role, tier, feature, locale });
expect(typeof result.allowed).toBe('boolean');
}
);public static IEnumerable<object[]> Cases =>
new List<object[]>
{
new object[] { "admin", "free", "api_access", "en-US" },
new object[] { "admin", "starter", "sso", "ja-JP" },
// ...
};
[Theory]
[MemberData(nameof(Cases))]
public void UserCapability(string role, string tier, string feature, string locale)
{
var result = CheckCapability(role, tier, feature, locale);
Assert.IsType<bool>(result.Allowed);
}