Exploring recommended practices
The following list of recommended practices is a compilation of the good habits that development teams must embrace to be successful in their implementations. You may use this as a checklist for the purpose of training your project teams, or while conducting technical reviews. However, note that this list is not meant to serve as comprehensive guidance. There may be additional practices that you wish to consider based on your experience and research on this subject.
Design should adhere to the SOLID principles
Introduced in 2000 by Michael Feathers, and subsequently popularized by Robert C Martin, the SOLID principles are a set of five design principles that play a very important role in object-oriented design. These principles help create robust, scalable, and maintainable software architectures.
The term SOLID is an acronym that stands for the following:
- S: Single Responsibility Principle (SRP)
- O: Open-Closed Principle (OCP) ...