YAGNI PrincipleYAGNI ('You aren't gonna need it') principle prevents a programmer from adding unnecessary features to the code.Feb 17, 20252 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.Feb 17, 20254 min read