-
Notifications
You must be signed in to change notification settings - Fork 0
Coding Style References
cagreer18 edited this page Jul 15, 2019
·
2 revisions
This is the preferred coding style of this project. The inspiration for the coding style are:
- General Style Guide: Google Java Style Guide
- Branching Guide: A Successful Git Branching Model
- Modification: features are prefixed with 'feature/' before the feature name.
- Modification: hotfixes are denoted as 'hotfix/[version-number]' instead of 'hotfix-[version-number]'
- Modification: releases are denoted as 'release/[version-number] instead of 'release-[version-number]'
- Test Naming Conventions: Given-When-Then
- Using Equivalence Partitioning and Boundary Value Analysis for guidelines and testing input.
- Using Modified Condition/Decision Coverage for guidelines and testing conditionals.
Note: Adding more references as the need for more conventions and guidelines arise.