Published onJune 12, 2023View count33 viewsAvoid side effectsCode-TipsImprove code reliability by avoiding side effects. Minimize hidden consequences, enhance predictability, and simplify testing.
Published onJune 11, 2023View count19 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 count43 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 count47 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 count169 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.