-
Notifications
You must be signed in to change notification settings - Fork 55
Pull Request Review Checklist
André Dietisheim edited this page Oct 19, 2016
·
5 revisions
- Is this a blocking issue or new feature? If yes, QE needs to +1 this PR
- Are Copyright headers in place?
- Is formatting (indentation etc.) matching to the rest of the code?
- Are method-/class-/variable-names meaningful?
- Are methods concise, not too long?
- Are catch blocks catching precise Exceptions only (no catch all)?
- Is there commented code?
- Are there unit-tests?
- Are there integration tests (or at least a jira to tackle these)?
- Is the non-happy path working, too?
- Are other parts that use the same component still working fine?
- Does it work?
- Is maven build passing?