Skip to content
On this page

통합(Integration) 테스트

Title
통합(Integration) 테스트
Category
Test
Tags
Aliases
통합(Integration) 테스트
Related
Created
last year
Updated
last year
  • 통합 테스트는 단위 테스트보다 더 큰 동작을 달성하기 위해 여러 모듈들을 모아 이들이 의도대로 협력하는지 확인한다.
  • 통합 테스트는 외부와 인터페이스하는 코드의 외부 경계를 테스트한다.
    • 따라서 코드가 AJAX, localStorage 또는 IndexedDB를 사용하여 단위 테스트할 수 없는 경우, 해당 인터페이스를 모킹(Mock)하고 테스트한다.

References

Released under the MIT License.