this post was submitted on 08 Jul 2023
575 points (97.2% liked)

Programmer Humor

19197 readers
1613 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] DeprecatedCompatV2 6 points 1 year ago (1 children)
[–] firelizzard 2 points 1 year ago (1 children)

How does dependency injection have anything to do with writing tests? I write tests by writing a test function that executes the code I want to test...

[–] DeprecatedCompatV2 0 points 1 year ago

I mean unit tests. I work on Spring Boot apps where there are distinct layers (controller -> service -> persistence), and you generally inject mocks into your object to isolate tests to the specific code you want under test. One benefit of this approach is that it's pretty easy to get 90% coverage.