What are unit testing and integration testing, and what other types of testing should I know about?

后端 未结 9 2207
感动是毒
感动是毒 2020-12-22 22:42

I\'ve seen other people mention several types of testing on Stack Overflow.

The ones I can recall are unit testing and integration testing. Especially unit testing i

9条回答
  •  爱一瞬间的悲伤
    2020-12-22 23:12

    Unit Testing: The testing done to a unit or to a smallest piece of software. Done to verify if it satisfies its functional specification or its intended design structure.

    Integration Testing: Testing the related modules together for its combined functionality.

    Regression Testing: Testing the application to verify that modifications have not caused unintended effects.

    Smoke Testing: Smoke testing is verified whether the build is testable or not.

提交回复
热议问题