this post was submitted on 06 Jul 2023
16 points (100.0% liked)

Programming

13345 readers
1 users here now

All things programming and coding related. Subcommunity of Technology.


This community's icon was made by Aaron Schneider, under the CC-BY-NC-SA 4.0 license.

founded 1 year ago
MODERATORS
top 2 comments
sorted by: hot top controversial new old
[–] [email protected] 2 points 1 year ago (1 children)

Refactoring, without test coverage, in a nutshell.

Definitely adding this one to the dev guidelines on unit and integration tests. 👍🏼

[–] [email protected] 2 points 1 year ago

I don't think I've met a codebase that had tests that would work with the level of refactoring that would need to be done. I mean let's be honest here, if it was well architected, refactoring wouldn’t be like the comic. It’s probably a mess of entangled concerns and bad inheritance.

For that matter the code most in need of refactoring probably has shit tests and that just assertNotNull on the happy path to appease sonar and be done with it.