SlideShare a Scribd company logo
Improving Code Quality In Medical Software
Through Code Reviews
Janne R¨onkk¨o (janne.ronkko@vincit.fi)
Vincit Oy
April 9, 2013
Contents
1 About Code Reviews
2 Code Reviewing In One Project
3 Summary
Outline
1 About Code Reviews
2 Code Reviewing In One Project
3 Summary
Goals In Code Reviews
Preventing bugs from ending up in product
Keeping main branch working
Quality assurance
Design verification
Knowledge sharing
There is always at least two developers who know the change
A way to see how others have solved problems
Are Code Reviews Useful?
The earlier you find issue the cheaper it is to fix the issue
Can improve your discipline
Forces the developer to reason his/her solution
There is no single developer knowing certain implementation
Are Code Reviews Useful?
”I believe that peer code reviews are the single biggest thing you
can do to improve your code”
Jeff Atwood of Coding Horror at
http://www.codinghorror.com/blog/2006/01/code-reviews-just-do-it.html
”Individual inspections typically catch about 60 percent of defects,
which is higher than other techniques except prototyping and
high-volume beta testing.”
Steve McConnell, Code Complete 2nd Edition, page 485
Types Of Code Review
Formal code review
Peer review
Pair programming
The Traditional Code Review
A lot of code is reviewed in single session
Many participants
Preparations beforehand
Formal
The Traditional Code Review
Problems
Iteration takes time
A lot of code
Leads discussion easily to minor issues
Peer Reviews
Usually immediately after task has been implemented
In most cases all the changes are reviewed as single entity
Part of the normal work flow
Pair Programming
Continuous review during development
Outline
1 About Code Reviews
2 Code Reviewing In One Project
About The Project
Workflow
Reviewing - The Way We Do It
Tools
3 Summary
About The Project
Overview
All changes have to be reviewed by our client before approval
Code is delivered to our client’s VCS
Changes are delivered biweekly
About The Developed Software
C++
Almost 2 million lines of code
Tens of subsystems
The development of current version started around 2000
Tens of developers, mainly located in Finland
Builds for Windows and Linux
The Vincit Team
Initially two developers
The team grew up to about 15 developers during the project
Most of the Vincit developers had no prior knowledge about
the software
Challenges For Developers
Large code base
Hard to remember / find utility classes
Finding implementation of certain feature is not trivial
The way how things are done has evolved
Coding style has evolved
Strict rules about which C++ features are allowed
Workflow
The Initial Workflow
No peer review at Vincit
Long delay between implementation and comments
Multiple changes were reviewed as single change
Single comment list for all reviewed changes
Reviewing was split on a subsystem basis
The Initial Workflow
Results From Reviews
Mainly comments about coding style
A lot of questions why something was changed
A lot of requests to fix issues not related to the real change in
files
Changes In Project
Vincit team had grown from two (2) developers to five (5)
Changes done within one delivery cycle had grown
Time getting comments from review had grown
Changes In Project
Vincit team had grown from two (2) developers to five (5)
Changes done within one delivery cycle had grown
Time getting comments from review had grown
Something had to be done to improve the situation
The Revised Workflow
In peer review
the developer explained the change to another developer
the change was discussed
usually it was just agreed that after some changes the task
would be ready
The Revised Workflow
Results From Reviews
Many issues were corrected before handing the code to the
client
Many enhancement ideas were discovered
Because the developer explained the code to reviewer not all
the issues that should have been fixed were fixed
The Revised Workflow
Results From Reviews
Many issues were corrected before handing the code to the
client
Many enhancement ideas were discovered
Because the developer explained the code to reviewer not all
the issues that should have been fixed were fixed
But the main problems in review remained:
The long delay between implementation and final comments
A lot of questions was asked
Comments from client were in a single list
The Current Workflow
Immediate (or almost immediate) comments on change
Client reviews also one change instead of all changes in single
delivery
The workflow has worked well even for team of 15 vincitizens
The Current Workflow
Results From Review
Practically no remaining coding style issues in client review
Developers have become more disciplined
Client can review the change faster and easier than before
Client can concentrate on functionality
The Current Workflow
Results From Review
Practically no remaining coding style issues in client review
Developers have become more disciplined
Client can review the change faster and easier than before
Client can concentrate on functionality
We have started talking that a change is ready to be bashed
(”valmis lyt¨att¨av¨aksi” in Finnish)
Reviewing - The Way We Do It
Overview
Each commit is reviewed separately1
Commit is always reviewed after fixing found issues
Reviewed commit is required to be self-containing
Review is done first internally; client gets review request after
internal review has passed
1
A task may contain more than one commit
Time Spent Reviewing
clearly less than 10% of development time
reviews can be easily done, for example, while compiling
Review Workflow
Reviewed Items
Our Checklist
Functionality
Reviewed Items
Our Checklist
Functionality
Coding style
Reviewed Items
Our Checklist
Functionality
Coding style
Implementation (code structure / architecture)
Reviewed Items
Our Checklist
Functionality
Coding style
Implementation (code structure / architecture)
Readability
Reviewed Items
Our Checklist
Functionality
Coding style
Implementation (code structure / architecture)
Readability
Commits and commit messages
Commits and commit messages
Why It Is Important To Review These?
Good commits with good commit messages
are easier to review
are helpful in the future
forces you to think what is reasonable change
Commits and commit messages
Why It Is Important To Review These?
Commits and commit messages
Why It Is Important To Review These?
There is surprisingly many tools that leverage good commits. For
example:
VCS log
VCS blame (who changed a line and in which commit)
find change introducing a bug
Reviewing Commit Messages
say what was changed
explain why the change has been done2
have description of the old incorrect behaviour in case of
bugfix3
2
just like good comments
3
or reference to the bug which contains the information
Reviewing Commit
self-containing
a good chapter in the story of the software’s history
would be reasonable piece to revert
Fixing Found Issues
The commit containing issues is replaced with fixed commit
because if the issue is found at code review
the story of the software’s history contains less issues / bugs
the commits remain self-containing and atomic
No commit should be broken
Continuous Integration
Continuous Integration
Usually C.I. is run for changes already put in main branch to
find if bad change has been merged
automatically build test versions
Continuous Integration
Usually C.I. is run for changes already put in main branch to
find if bad change has been merged
automatically build test versions
Downsides are that
C.I. is only reacting to issues not preventing them
C.I. could provide valuable information for reviews
Continuous Integration Reviews Our Commits!
Our C.I. tool reviews all the commits immediately after the
commits are available for review by
running unittests
running smoke test
running static code analyzer
building the most important builds
What Else Could Be Done At Review Time
Build and publish test version for all platforms
Have test engineer, client or end user to verify that the
change is valid
Tools
About Tools
All the tools we use in the review process
are open source
are quite easy to setup4
require very little maintenance
have been scaling without issues
4
first usable installation done less than one day
Version Control System
Git (http://git-scm.com/)
Distributed VCS
Very efficient at branching
Fast and efficient
Git allows easy way to ”rewrite history” (rebasing).
Version Control System
Git (http://git-scm.com/)
Distributed VCS
Very efficient at branching
Fast and efficient
Git allows easy way to ”rewrite history” (rebasing).
Currently only Mercurial supports rebasing in addition to Git.
Darcs has rebase support in early phase.
Code Review Tool
Gerrit (https://code.google.com/p/gerrit/)
Web based code review tool
Integrates with git5
Easy to add comments for changes
A Quick Introduction To Gerrit:
http://gerrit-documentation.googlecode.com/svn/
Documentation/2.6/intro-quick.html
5
Gerrit implements git repository
Gerrit
Reviewing A Commit
Gerrit
Reviewing A Fixed Commit
Gerrit
My Comments
The best review tool I have used
Very efficient and helpfull; makes reviewing easy
Just a tool
Continuous Integration
Buildbot (http://buildbot.net/)
Python based CI system
Master controls which builds should be built and when
Slaves do the actual builds
Built-in support for gerrit
Can be configured to review changes in gerrit
Outline
1 About Code Reviews
2 Code Reviewing In One Project
3 Summary
Summary
1 About Code Reviews
2 Code Reviewing In One Project
About The Project
Workflow
Reviewing - The Way We Do It
Tools
3 Summary
Questions?
Improving Code Quality In Medical
Software Through Code Reviews
Janne R¨onkk¨o
janne.ronkko@vincit.fi

More Related Content

PPTX
Importance of the quality of code
PPT
Code Quality
PDF
Code Review
PPTX
TDD with RSpec
PPTX
Tdd com Java
PDF
Android Devops : Master Continuous Integration and Delivery
PDF
Continuous delivery of embedded systems embedded meetup
Importance of the quality of code
Code Quality
Code Review
TDD with RSpec
Tdd com Java
Android Devops : Master Continuous Integration and Delivery
Continuous delivery of embedded systems embedded meetup

What's hot (20)

KEY
TDD refresher
PPTX
Code Quality Assurance
PDF
Why and how to keep your code quality
PDF
Test driven development - Zombie proof your code
PDF
Measuring Code Quality in WTF/min.
PDF
Software Engineering Culture - Improve Code Quality
PPT
Code Review
PDF
Understanding, measuring and improving code quality in JavaScript
PDF
Test driven development_continuous_integration
ODP
Documenting Code - Patterns and Anti-patterns - NLPW 2016
ODP
Beyond Unit Testing
ODP
Documenting code yapceu2016
PDF
Tdd practices
PPTX
Code review process with JetBrains UpSource
PDF
Code metrics in PHP
PDF
DevOpsDaysRiga 2018: Neil Crawford - Trunk based development, continuous depl...
PPT
Code Review
PDF
TDD CrashCourse Part2: TDD
PDF
Code review best practice
TDD refresher
Code Quality Assurance
Why and how to keep your code quality
Test driven development - Zombie proof your code
Measuring Code Quality in WTF/min.
Software Engineering Culture - Improve Code Quality
Code Review
Understanding, measuring and improving code quality in JavaScript
Test driven development_continuous_integration
Documenting Code - Patterns and Anti-patterns - NLPW 2016
Beyond Unit Testing
Documenting code yapceu2016
Tdd practices
Code review process with JetBrains UpSource
Code metrics in PHP
DevOpsDaysRiga 2018: Neil Crawford - Trunk based development, continuous depl...
Code Review
TDD CrashCourse Part2: TDD
Code review best practice
Ad

Similar to Improving Code Quality In Medical Software Through Code Reviews - Vincit Teatime 2013 (20)

PDF
The Anatomy of a Code Review
PPTX
Marrying Jenkins and Gerrit-Berlin Expert Days 2013
PDF
Code Review Tool Evaluation
PDF
Xen Project Contributor Training - Part 1 introduction v1.0
PDF
FUG Agile software engineering practices
PPT
Adopting code reviews for agile software development
PPTX
Code Reviews
PDF
Code reviews
PDF
Continuous integrations - Basics
PDF
Continuous Integration (CI) - An effective development practice
PPTX
It's all about feedback - code review as a great tool in the agile toolbox
PPTX
Capability Building for Cyber Defense: Software Walk through and Screening
PDF
On to code review lessons learned at microsoft
PDF
The Testers' Secret Weapon - Code Reviews
PPTX
Unit3 software review control software
PDF
Debugging 2013- Lars pedersen
PPTX
Making software development processes to work for you
PDF
Agile & ALM tools
DOCX
Code review guidelines
PDF
Continuous integration
The Anatomy of a Code Review
Marrying Jenkins and Gerrit-Berlin Expert Days 2013
Code Review Tool Evaluation
Xen Project Contributor Training - Part 1 introduction v1.0
FUG Agile software engineering practices
Adopting code reviews for agile software development
Code Reviews
Code reviews
Continuous integrations - Basics
Continuous Integration (CI) - An effective development practice
It's all about feedback - code review as a great tool in the agile toolbox
Capability Building for Cyber Defense: Software Walk through and Screening
On to code review lessons learned at microsoft
The Testers' Secret Weapon - Code Reviews
Unit3 software review control software
Debugging 2013- Lars pedersen
Making software development processes to work for you
Agile & ALM tools
Code review guidelines
Continuous integration
Ad

More from VincitOy (20)

PDF
Vincit Teatime 2015.2 - Niko Kurtti: SaaSiin pa(i)nostusta
PDF
Vincit Teatime 2015.2 - Aleksi Häkli: SaaSiin pa(i)nostusta
PDF
Vincit Teatime 2015.2 - Otto Kekäläinen: Don't be a git
PDF
Vincit ankkasarjakuva
PDF
Tampere goes agile 2015
PPTX
Digijytky kunnossapidossa 2015 - Simsotec
PPTX
Digijytky kunnossapidossa 2015 - M-Files
PPTX
Digijytky kunnossapidossa 2015 - Oliotalo
PDF
Digijytky kunnossapidossa 2015 - Vincit
PDF
Itseohjautuvan organisaation muutos
PDF
Vincit markkinointi AMKE VIMMA 2.6.2015
PDF
Vincit Teatime 2015 - Case Käyttöauto: Google Glass
PDF
Vincit Teatime 2015 - Heikki Salo: Case ZenRobotics: JavaScriptin äärirajoilla
PDF
Vincit Teatime 2015 - Niko Kurtti: Case Shopify: SaaS:n testaaminen, mihin un...
PDF
Implementation of an intelligent car wash service - Vincit Teatime 2013
PDF
Projektipäivät 2014: V-Käyrä & Apgar
PDF
Vincit V-Käyrä
PDF
Need more speed! Pain of mobile app development. Case: Virittäjät
PDF
Trello projektinhallinnan työkaluna
PDF
Avaus - Vincit Teatime 2014
Vincit Teatime 2015.2 - Niko Kurtti: SaaSiin pa(i)nostusta
Vincit Teatime 2015.2 - Aleksi Häkli: SaaSiin pa(i)nostusta
Vincit Teatime 2015.2 - Otto Kekäläinen: Don't be a git
Vincit ankkasarjakuva
Tampere goes agile 2015
Digijytky kunnossapidossa 2015 - Simsotec
Digijytky kunnossapidossa 2015 - M-Files
Digijytky kunnossapidossa 2015 - Oliotalo
Digijytky kunnossapidossa 2015 - Vincit
Itseohjautuvan organisaation muutos
Vincit markkinointi AMKE VIMMA 2.6.2015
Vincit Teatime 2015 - Case Käyttöauto: Google Glass
Vincit Teatime 2015 - Heikki Salo: Case ZenRobotics: JavaScriptin äärirajoilla
Vincit Teatime 2015 - Niko Kurtti: Case Shopify: SaaS:n testaaminen, mihin un...
Implementation of an intelligent car wash service - Vincit Teatime 2013
Projektipäivät 2014: V-Käyrä & Apgar
Vincit V-Käyrä
Need more speed! Pain of mobile app development. Case: Virittäjät
Trello projektinhallinnan työkaluna
Avaus - Vincit Teatime 2014

Recently uploaded (20)

PDF
Getting Started with Data Integration: FME Form 101
PPTX
Programs and apps: productivity, graphics, security and other tools
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
Encapsulation theory and applications.pdf
PDF
Encapsulation_ Review paper, used for researhc scholars
PPTX
OMC Textile Division Presentation 2021.pptx
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
Empathic Computing: Creating Shared Understanding
PPTX
Tartificialntelligence_presentation.pptx
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
Network Security Unit 5.pdf for BCA BBA.
PDF
Univ-Connecticut-ChatGPT-Presentaion.pdf
PPTX
cloud_computing_Infrastucture_as_cloud_p
PPTX
A Presentation on Artificial Intelligence
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
MIND Revenue Release Quarter 2 2025 Press Release
PDF
Assigned Numbers - 2025 - Bluetooth® Document
Getting Started with Data Integration: FME Form 101
Programs and apps: productivity, graphics, security and other tools
Diabetes mellitus diagnosis method based random forest with bat algorithm
Encapsulation theory and applications.pdf
Encapsulation_ Review paper, used for researhc scholars
OMC Textile Division Presentation 2021.pptx
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Building Integrated photovoltaic BIPV_UPV.pdf
Empathic Computing: Creating Shared Understanding
Tartificialntelligence_presentation.pptx
Per capita expenditure prediction using model stacking based on satellite ima...
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Network Security Unit 5.pdf for BCA BBA.
Univ-Connecticut-ChatGPT-Presentaion.pdf
cloud_computing_Infrastucture_as_cloud_p
A Presentation on Artificial Intelligence
Reach Out and Touch Someone: Haptics and Empathic Computing
MIND Revenue Release Quarter 2 2025 Press Release
Assigned Numbers - 2025 - Bluetooth® Document

Improving Code Quality In Medical Software Through Code Reviews - Vincit Teatime 2013

  • 1. Improving Code Quality In Medical Software Through Code Reviews Janne R¨onkk¨o (janne.ronkko@vincit.fi) Vincit Oy April 9, 2013
  • 2. Contents 1 About Code Reviews 2 Code Reviewing In One Project 3 Summary
  • 3. Outline 1 About Code Reviews 2 Code Reviewing In One Project 3 Summary
  • 4. Goals In Code Reviews Preventing bugs from ending up in product Keeping main branch working Quality assurance Design verification Knowledge sharing There is always at least two developers who know the change A way to see how others have solved problems
  • 5. Are Code Reviews Useful? The earlier you find issue the cheaper it is to fix the issue Can improve your discipline Forces the developer to reason his/her solution There is no single developer knowing certain implementation
  • 6. Are Code Reviews Useful? ”I believe that peer code reviews are the single biggest thing you can do to improve your code” Jeff Atwood of Coding Horror at http://www.codinghorror.com/blog/2006/01/code-reviews-just-do-it.html ”Individual inspections typically catch about 60 percent of defects, which is higher than other techniques except prototyping and high-volume beta testing.” Steve McConnell, Code Complete 2nd Edition, page 485
  • 7. Types Of Code Review Formal code review Peer review Pair programming
  • 8. The Traditional Code Review A lot of code is reviewed in single session Many participants Preparations beforehand Formal
  • 9. The Traditional Code Review Problems Iteration takes time A lot of code Leads discussion easily to minor issues
  • 10. Peer Reviews Usually immediately after task has been implemented In most cases all the changes are reviewed as single entity Part of the normal work flow
  • 12. Outline 1 About Code Reviews 2 Code Reviewing In One Project About The Project Workflow Reviewing - The Way We Do It Tools 3 Summary
  • 14. Overview All changes have to be reviewed by our client before approval Code is delivered to our client’s VCS Changes are delivered biweekly
  • 15. About The Developed Software C++ Almost 2 million lines of code Tens of subsystems The development of current version started around 2000 Tens of developers, mainly located in Finland Builds for Windows and Linux
  • 16. The Vincit Team Initially two developers The team grew up to about 15 developers during the project Most of the Vincit developers had no prior knowledge about the software
  • 17. Challenges For Developers Large code base Hard to remember / find utility classes Finding implementation of certain feature is not trivial The way how things are done has evolved Coding style has evolved Strict rules about which C++ features are allowed
  • 19. The Initial Workflow No peer review at Vincit Long delay between implementation and comments Multiple changes were reviewed as single change Single comment list for all reviewed changes Reviewing was split on a subsystem basis
  • 20. The Initial Workflow Results From Reviews Mainly comments about coding style A lot of questions why something was changed A lot of requests to fix issues not related to the real change in files
  • 21. Changes In Project Vincit team had grown from two (2) developers to five (5) Changes done within one delivery cycle had grown Time getting comments from review had grown
  • 22. Changes In Project Vincit team had grown from two (2) developers to five (5) Changes done within one delivery cycle had grown Time getting comments from review had grown Something had to be done to improve the situation
  • 23. The Revised Workflow In peer review the developer explained the change to another developer the change was discussed usually it was just agreed that after some changes the task would be ready
  • 24. The Revised Workflow Results From Reviews Many issues were corrected before handing the code to the client Many enhancement ideas were discovered Because the developer explained the code to reviewer not all the issues that should have been fixed were fixed
  • 25. The Revised Workflow Results From Reviews Many issues were corrected before handing the code to the client Many enhancement ideas were discovered Because the developer explained the code to reviewer not all the issues that should have been fixed were fixed But the main problems in review remained: The long delay between implementation and final comments A lot of questions was asked Comments from client were in a single list
  • 26. The Current Workflow Immediate (or almost immediate) comments on change Client reviews also one change instead of all changes in single delivery The workflow has worked well even for team of 15 vincitizens
  • 27. The Current Workflow Results From Review Practically no remaining coding style issues in client review Developers have become more disciplined Client can review the change faster and easier than before Client can concentrate on functionality
  • 28. The Current Workflow Results From Review Practically no remaining coding style issues in client review Developers have become more disciplined Client can review the change faster and easier than before Client can concentrate on functionality We have started talking that a change is ready to be bashed (”valmis lyt¨att¨av¨aksi” in Finnish)
  • 29. Reviewing - The Way We Do It
  • 30. Overview Each commit is reviewed separately1 Commit is always reviewed after fixing found issues Reviewed commit is required to be self-containing Review is done first internally; client gets review request after internal review has passed 1 A task may contain more than one commit
  • 31. Time Spent Reviewing clearly less than 10% of development time reviews can be easily done, for example, while compiling
  • 35. Reviewed Items Our Checklist Functionality Coding style Implementation (code structure / architecture)
  • 36. Reviewed Items Our Checklist Functionality Coding style Implementation (code structure / architecture) Readability
  • 37. Reviewed Items Our Checklist Functionality Coding style Implementation (code structure / architecture) Readability Commits and commit messages
  • 38. Commits and commit messages Why It Is Important To Review These? Good commits with good commit messages are easier to review are helpful in the future forces you to think what is reasonable change
  • 39. Commits and commit messages Why It Is Important To Review These?
  • 40. Commits and commit messages Why It Is Important To Review These? There is surprisingly many tools that leverage good commits. For example: VCS log VCS blame (who changed a line and in which commit) find change introducing a bug
  • 41. Reviewing Commit Messages say what was changed explain why the change has been done2 have description of the old incorrect behaviour in case of bugfix3 2 just like good comments 3 or reference to the bug which contains the information
  • 42. Reviewing Commit self-containing a good chapter in the story of the software’s history would be reasonable piece to revert
  • 43. Fixing Found Issues The commit containing issues is replaced with fixed commit because if the issue is found at code review the story of the software’s history contains less issues / bugs the commits remain self-containing and atomic No commit should be broken
  • 45. Continuous Integration Usually C.I. is run for changes already put in main branch to find if bad change has been merged automatically build test versions
  • 46. Continuous Integration Usually C.I. is run for changes already put in main branch to find if bad change has been merged automatically build test versions Downsides are that C.I. is only reacting to issues not preventing them C.I. could provide valuable information for reviews
  • 47. Continuous Integration Reviews Our Commits! Our C.I. tool reviews all the commits immediately after the commits are available for review by running unittests running smoke test running static code analyzer building the most important builds
  • 48. What Else Could Be Done At Review Time Build and publish test version for all platforms Have test engineer, client or end user to verify that the change is valid
  • 49. Tools
  • 50. About Tools All the tools we use in the review process are open source are quite easy to setup4 require very little maintenance have been scaling without issues 4 first usable installation done less than one day
  • 51. Version Control System Git (http://git-scm.com/) Distributed VCS Very efficient at branching Fast and efficient Git allows easy way to ”rewrite history” (rebasing).
  • 52. Version Control System Git (http://git-scm.com/) Distributed VCS Very efficient at branching Fast and efficient Git allows easy way to ”rewrite history” (rebasing). Currently only Mercurial supports rebasing in addition to Git. Darcs has rebase support in early phase.
  • 53. Code Review Tool Gerrit (https://code.google.com/p/gerrit/) Web based code review tool Integrates with git5 Easy to add comments for changes A Quick Introduction To Gerrit: http://gerrit-documentation.googlecode.com/svn/ Documentation/2.6/intro-quick.html 5 Gerrit implements git repository
  • 56. Gerrit My Comments The best review tool I have used Very efficient and helpfull; makes reviewing easy Just a tool
  • 57. Continuous Integration Buildbot (http://buildbot.net/) Python based CI system Master controls which builds should be built and when Slaves do the actual builds Built-in support for gerrit Can be configured to review changes in gerrit
  • 58. Outline 1 About Code Reviews 2 Code Reviewing In One Project 3 Summary
  • 59. Summary 1 About Code Reviews 2 Code Reviewing In One Project About The Project Workflow Reviewing - The Way We Do It Tools 3 Summary
  • 60. Questions? Improving Code Quality In Medical Software Through Code Reviews Janne R¨onkk¨o janne.ronkko@vincit.fi