YAGNI PrincipleYAGNI ('You aren't gonna need it') principle prevents a programmer from adding unnecessary features to the code.Mar 03, 20212 min read
Unit TestingUnit Tests are a foundation of your testing. They test the smallest pieces of code called units that have to be isolated from a system. Unit Tests are small, cheap and easy to maintain. The number of Unit Tests outnumbers any other types of tests.Nov 11, 20194 min read