Software Engineering KB

Home

❯

06 Development Process

❯

01 Testing

❯

01 Concept

❯

Parameterized Tests

Parameterized Tests

Feb 10, 20261 min read

  • testing
  • parameterized

Parameterized Tests

← Back to Unit Testing

Same test logic, multiple inputs. Run the same test with different data sets to cover multiple cases without duplicating code. Supported by most test frameworks (pytest.parametrize, JUnit @ParameterizedTest, Jest each).

Key Properties

  • Data-Driven Testing
  • Case Coverage
  • Reduced Duplication

Related

  • Property-Based Testing (generates inputs automatically)

testing parameterized


Graph View

  • Parameterized Tests
  • Key Properties
  • Related

Backlinks

  • Unit Testing
  • Property-Based Testing

Created with Quartz v4.5.2 © 2026

  • GitHub