MIT
-
7. DebuggingMIT 2020. 10. 27. 11:22
- Testing 1) unit testing -> testing each function seperately 2) regression testing 3) integration testing -> If 2) or 3) get failed, go back to 1). - black box testing - glass box testing - rubber duck debugging 개발자 자신도 자신의 코드를 설명하지 못하는 경우 - 주의사항 1. Don't 1) Wtrite entire program 2) Test entire program 3) Debug entire program 2. Do 1) Write a function 2) Test the function, debug the function 3)..