- 2 Posts
- 2 Comments
Joined 2 years ago
Cake day: July 2nd, 2023
You are not logged in. If you use a Fediverse account that is able to follow users, you can follow this user.
McMonster@programming.devto Java@programming.dev•java champions speaking out against lombok0·3 months agoAnything that does under-the-cover low level magic is bad. The deeper the magic, the worse. Spring is the particular offender here with the lengths it goes so to make you not use
new
and never be able to debug why something happens. Or worse, why something doesn’t happen. We know how to deal with code, but not magic.
I’ve seen codebases that had old
testValid2
style of test as well as fully fleshed outconversionReturnsNullOnEmptyString
style. Working there made me apreciate proper naming. I know different test frameworks in different languages let you name the test separately, but it’s a bit of an effort duplication.