What do your code reviews involve and what patterns are successful? - Stack Overflow most recent 30 from stackoverflow.com2009-11-22T17:01:32Zhttp://stackoverflow.com/feeds/question/140476http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/140476/what-do-your-code-reviews-involve-and-what-patterns-are-successful11What do your code reviews involve and what patterns are successful?lillq2008-09-26T16:15:37Z2008-12-16T12:53:17Z
<p>I want to better understand the patterns that work and the patterns that don't work for successful code reviews. </p>
<ol>
<li><p>Should there be a difference be a Formal Code Review and an Informal Code Review?</p></li>
<li><p>What level of documentation of the Code Review do people do?</p></li>
<li><p>Can a Code Review be just as useful without the author of the code participating?</p></li>
</ol>
<p>Thanks for your input in advance.</p>
http://stackoverflow.com/questions/140476/what-do-your-code-reviews-involve-and-what-patterns-are-successful/140524#1405241Answer by Rob Wells for What do your code reviews involve and what patterns are successful?Rob Wells2008-09-26T16:22:35Z2008-12-16T12:53:17Z<p>Start by having a look at the concept of <a href="http://en.wikipedia.org/wiki/Fagan_inspection" rel="nofollow">Fagan inspections</a>.</p>
<p>This method <em>really</em> helps the quality of the reviewed code, and the review itself in fact!</p>
<p>And always remember to criticise the code and not the coder.</p>
http://stackoverflow.com/questions/140476/what-do-your-code-reviews-involve-and-what-patterns-are-successful/140561#1405611Answer by Nicholas Trandem for What do your code reviews involve and what patterns are successful?Nicholas Trandem2008-09-26T16:31:20Z2008-09-26T16:31:20Z<p>Using the <a href="http://code.google.com/p/jupiter-eclipse-plugin/" rel="nofollow">Eclipse Jupiter plugin</a> and following the process that it automates has worked very well for us. It's not too invasive or bureaucratic, but it still really helps for finding bugs and design problems.</p>
http://stackoverflow.com/questions/140476/what-do-your-code-reviews-involve-and-what-patterns-are-successful/140567#1405676Answer by David Segonds for What do your code reviews involve and what patterns are successful?David Segonds2008-09-26T16:31:59Z2008-09-26T16:31:59Z<p>Best code reviews I have ever done involve a tool called Code Collaborator from Smartbear.
The author upload the code to a server. Reviewers and observers can see differences between the new code and the old code and comment on the new code.
Here are the best practices:</p>
<ol>
<li>The author comments on the code written to give a clue to the reviewer on where to start.</li>
<li>The reviewer comments and add defects that will need to be fixed before the review is accepted. Only important things should be marked as defects. Not typo or things that you know the developer will fix before committing.</li>
<li>Involve new developers as observers. This is a good training to get them familiar with the project. </li>
<li>Involve as observer or reviewer "experts" on the piece of code</li>
</ol>
<p>Anti-patterns:</p>
<ol>
<li>Use the code review tool as a design review tool. It is not suitable for that. Only review code for which a design has been agreed upon.</li>
<li>Involve two many reviewers and observers</li>
<li>Let the review linger in the system for more that a couple of days.</li>
</ol>
http://stackoverflow.com/questions/140476/what-do-your-code-reviews-involve-and-what-patterns-are-successful/140580#1405804Answer by AShelly for What do your code reviews involve and what patterns are successful?AShelly2008-09-26T16:35:15Z2008-09-26T16:35:15Z<p>The pattern I find to be critical to good code reviews is <em>having programmers with the time and motivation to really read and understand the code as reviewers</em>. Reviewers who only give the code a cursory look and point out a few code style changes don't really contribute to the process.</p>
http://stackoverflow.com/questions/140476/what-do-your-code-reviews-involve-and-what-patterns-are-successful/140623#1406231Answer by CJP for What do your code reviews involve and what patterns are successful?CJP2008-09-26T16:44:28Z2008-09-26T16:44:28Z<ul>
<li><p>Schedule reviews or inspections
regularly and frequently.
Review/Inspect whole modules when
new, and delta <strong>+ surrounding
code</strong> for maintenance. Building up a backlog of stuff to be reviewed makes the whole process intimidating.</p></li>
<li><p>Everyone's code gets reviewed, from
the most junior to the most senior,
and anyone can comment without fear
of recrimination.</p></li>
<li><p>Don't just review/inspect code; look
at tests (especially for TDD) and
test results too. We've detected
some interesting bugs and test
omissions by discovering that what
we thought we were testing wasn't
really what was being tested, or
that we'd inadvertently used test
data from the same equivalence class
when we thought we were using
distinct classes of data.</p></li>
</ul>
http://stackoverflow.com/questions/140476/what-do-your-code-reviews-involve-and-what-patterns-are-successful/140690#1406901Answer by JB King for What do your code reviews involve and what patterns are successful?JB King2008-09-26T17:02:07Z2008-09-26T17:02:07Z<p>I don't think there should be formal and informal as much as there are different types of time allowed for code reviews. If there is a bug to be fixed ASAP and the code change is just a few lines of code this may still get reviewed but likely not in the same way as if you are putting out a new ERP or CRM system by contrast. Also, in some cases there can be hours set aside to review some code while in others it should take less than 5 minutes.</p>
<p>The documentation can be in a few forms. It may just be an e-mail saying that Joe reviewed Bob's work and that this is approved to go into the next stage for a release. Alternatively, it may be a few pages of notes on what to change before promoting the code so that some design patterns are used and the code is cleaned up from its initial quick and dirty form.</p>
<p>As for the last question, I think the answer is sometimes. If you have some code that you want to get other opinions on how to optimize the code, then not having the author participate may be helpful in getting ideas and then having the author either make the change or justify why the change doesn't improve the code, e.g. if someone wants to put in a bubble sort algorithm this may be rejected because of other more efficient sorting algorithms like quicksort, mergesort and heapsort.</p>
<p>Edited to added a couple of patterns that I found useful:
For bug fix code reviews, the pattern I like best is the following:
1) Show the bug in a testing/staging environment so that I can see what went wrong.
2) Show me where the code was changed and a brief explanation of why it was changed this way.
3) Show me that the code is fixed on your local machine.</p>
<p>In contrast, if one implements an API with a dozen methods then it may be better to have some documentation that summarizes what was used in the implementation and why some choices were made, e.g. what kind of list implementation was used like an array, hashtable, linked list, generic list, stack, queue, etc.</p>
http://stackoverflow.com/questions/140476/what-do-your-code-reviews-involve-and-what-patterns-are-successful/141696#1416962Answer by Brandon DuRette for What do your code reviews involve and what patterns are successful?Brandon DuRette2008-09-26T20:17:21Z2008-09-26T20:17:21Z<p>My company, Smart Bear makes Code Collaborator (as mentioned by <a href="http://stackoverflow.com/questions/140476/what-do-your-code-reviews-involve-and-what-patterns-are-successful#140567">David Segonds</a>). We also give away a free book called <a href="http://smartbear.com/codecollab-code-review-book.php" rel="nofollow">Best Kept Secrets of Peer Code Review</a>. It's got some good best practices that we learned from working with our customers and looking at the other literature.</p>
<p>Here are some points:</p>
<ul>
<li>Keep the code review small. Too much code at once is overwhelming, so if your reviews have too much code in them, review more often in smaller chunks.</li>
<li>Involve everyone, but not all at once. Code review is a chance for everyone to learn, reviewers and authors alike.</li>
<li>Remember, it's about the code, not about the author. </li>
</ul>