5
목록 테스트… 각 조건에 대해 동일한 테스트 또는 하나의 테스트에 모두 있습니까?
함수가 목록에서 예상 한 작업을 수행하는지 테스트하고 있습니다. 테스트하고 싶습니다 f(null) -> null f(empty) -> empty f(list with one element) -> list with one element f(list with 2+ elements) -> list with the same number of elements, doing what expected 그렇게하기 위해 가장 좋은 방법은 무엇입니까? "WorksAsExpected"라는 이름으로 동일한 (방법) …
21
unit-testing
tdd