show/hide this revision's text 2 Roles in Code Review

I agree with the answers posted so far, especially @Ironsides & @Tom.

I Googled "White Hat Black Hat QA Testing", and this SO Question was on the first page:

Developer testing vs. QA team testing - What is the right division of work?

Refer to the answers there for a good discussion of what belongs where.

On who should do what, during code reviews for one past employer we used the following roles:

  • Presenter (not the author) - leads the code walkthrough
  • Recorder (not the author) - records unanswered questions, action items, defects, etc for distribution
  • Reviewers - at least one other developer who is not the author (so you have at least three sets of eyes)
  • Author - answers questions.

Number one ground rule: Talk about the code (or the artifact under review) not the author.

Note also that a formal division of QA as described isn't the only way to approach the issue of QA. Small teams often use a combination of unit tests, continuous integration and users or user representatives during the development process. This allows the users or their representatives to get feedback into the process early and often, and can drastically reduce the need for a "Big Bang", exhaustive QA test when a release is made.

show/hide this revision's text 1

I agree with the answers posted so far, especially @Ironsides & @Tom.

I Googled "White Hat Black Hat QA Testing", and this SO Question was on the first page:

Developer testing vs. QA team testing - What is the right division of work?

Refer to the answers there for a good discussion of what belongs where.

Note also that a formal division of QA as described isn't the only way to approach the issue of QA. Small teams often use a combination of unit tests, continuous integration and users or user representatives during the development process. This allows the users or their representatives to get feedback into the process early and often, and can drastically reduce the need for a "Big Bang", exhaustive QA test when a release is made.