Files
slic/tests/test_param.py
T
tligui_y b08b5ac186
Run Pytest with HTML and XML Test Reports / tests (push) Successful in 23s
Add tests/test_param.py
2025-07-16 14:58:54 +02:00

5 lines
105 B
Python

import pytest
@pytest.mark.parametrize("x,y", [(1, 2), (3, 4)])
def test_add(x, y):
assert x + y > 0