Bug Hunting Strategies?

前端 未结 14 1363
北恋
北恋 2021-02-08 12:00

Let\'s say you have a bug that was found in functional testing of a fairly complex part of the software. It could stem from bad/unexpected data in the database, middle-tier cod

14条回答
  •  青春惊慌失措
    2021-02-08 12:55

    My first step in a situation like that is usually to check things in the order that will most quickly reduce the number of things left to check. You could almost think of it as doing a binary search for the bug: "Well, the POST parameters look right, so I can rule out everything before the form submission," etc.

    That said, if I have a strong feeling that the problem might be in a particular place, I'll check that first.

提交回复
热议问题