전환 패리티 테스트와 증적 기준 정의 #6

Open
forge-bot wants to merge 5 commits from forge/BAIS-SPRING-QA-001-attempt-1 into main
Showing only changes of commit e54613f403 - Show all commits

View file

@ -0,0 +1,9 @@
import pytest
@pytest.mark.parametrize('input_data, expected', [
('boundary_case_1', 'expected_result_1'),
('boundary_case_2', 'expected_result_2')
])
def test_boundary_conversion(input_data, expected):
result = convert(input_data)
assert result == expected