Published onJune 12, 2023View count27 viewsAvoid side effectsCode-TipsImprove code reliability by avoiding side effects. Minimize hidden consequences, enhance predictability, and simplify testing.
Published onJune 11, 2023View count15 viewsDon't ignore caught errorsCode-TipsThrown errors are a good thing and you can do something about them. The rule is “Don't ignore caught errors”
Published onJune 11, 2023View count25 viewsDon't Swallow ExceptionsCode-TipsThrown errors are a good thing and you can do something about them. The rule is “Don't ignore caught errors”
Published onJune 10, 2023View count34 viewsOne concept per testCode-TipsThe rule is really simple. The only thing you have to do is to choose a single concept to test in every unit test you write.
Published onJune 9, 2023View count115 viewsKeep it short and simple (KISS)Code-TipsLearn about the KISS principle and its impact on software development. Prioritize simplicity, improve maintainability, and enhance code readability.