Should QA test from a strictly black-box perspective?

后端 未结 7 791
感情败类
感情败类 2021-01-14 06:51

Assuming that unit tests are handled by development, is there any reason for QA to have knowledge of the details of how a product works? By which I mean, do they need to kn

相关标签:
7条回答
  • 2021-01-14 07:49

    It absolutely makes sense for the testers to know as much about the implementation of the software as they can. That'll help them test better.

    Black-box testing is a useful and necessary technique, but knowing a little bit about what's happening under the hood makes it easier to define the really interesting test cases.

    The problem with relying on developers' unit tests for all your white-box testing needs is that developers, by and large, are not very thorough testers, especially when it comes to code that they've written.

    0 讨论(0)
提交回复
热议问题