전환 패리티 테스트와 증적 기준 정의 #6
1 changed files with 9 additions and 0 deletions
9
tests/conversion_tests/test_boundary.py
Normal file
9
tests/conversion_tests/test_boundary.py
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue