전환 패리티 테스트와 증적 기준 정의 (BAIS-SPRING-QA-001)
Some checks are pending
ci / test (push) Waiting to run

This commit is contained in:
forge-bot 2026-07-10 13:31:12 +00:00
parent 0c6dd9455f
commit e54613f403

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