Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implements a decorator to facilitate creating table-driven unit tests. #1922

Merged
merged 1 commit into from
Mar 3, 2025

Conversation

fressi-elastic
Copy link
Contributor

@fressi-elastic fressi-elastic commented Mar 3, 2025

This implements the tool required in issue #1921

Implements a decorator to facilitate creating table-driven unit tests (https://go.dev/wiki/TableDrivenTests).

Example of use:

@dataclass
class SumCase:
    values: list[int]
    want: int


@cases(
    no_values=SumCase(values=[], want=0),
    two_values=SumCase(values=[1, 2], want=3),
)
def test_sum(case: SumCase):
    assert sum(case.values) == case.want

@fressi-elastic fressi-elastic changed the title Add tool to help creating tabular input test cases. Implements a decorator to facilitate creating table-driven unit tests. Mar 3, 2025
Copy link
Contributor

@gbanasiak gbanasiak left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@fressi-elastic fressi-elastic merged commit d0ea6cf into elastic:master Mar 3, 2025
15 checks passed
@dpifke-elastic dpifke-elastic added the cleanup Linter changes, reformatting, removal of unused code etc. label Mar 28, 2025
@dpifke-elastic dpifke-elastic added this to the 2.12.0 milestone Mar 28, 2025
@dpifke-elastic dpifke-elastic added the :misc Changes that don't affect users directly: linter fixes, test improvements, etc. label Mar 28, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
cleanup Linter changes, reformatting, removal of unused code etc. :misc Changes that don't affect users directly: linter fixes, test improvements, etc.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants