this post was submitted on 01 Apr 2025
1208 points (99.1% liked)

Programmer Humor

22200 readers
3218 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 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 73 points 2 days ago (2 children)

I wish our test team was like that. Ours would respond with something like “How would I test this?”

[–] [email protected] 28 points 2 days ago (2 children)

Tester here, I only have to do this if the ticket is unclear / its not clear where impact can be felt by the change. I once had a project with 4 great analysts and basically never had to ask this question there.

[–] [email protected] 9 points 1 day ago (1 children)

We added an API endpoint so users with permission sets that allow them to access this can see the response.

Ok... What is the end point, what's the permission, is it bundled into a set by default or do I need to make one, what's the expected response, do we give an error if the permission is false or just a 500?

They always make it so vague

[–] [email protected] 6 points 1 day ago (1 children)

And if one dev responds with "Just look at the swagger" to those questions I'm gonna cry

[–] [email protected] 3 points 1 day ago (1 children)

ID: String (required)

BUT WHAT FORMAT?!?

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

I feel this in my core bro

[–] [email protected] 3 points 1 day ago (1 children)

I have worked with some excellent testers but I have also worked with a team that literally required us to write down the tests for them.

To be fair, that wasn’t their fault because they weren’t testers. They were finance people that had been seconded to testing because we didn’t have a real test team.

The current team is somewhere in between.

[–] [email protected] 5 points 1 day ago

Look I don't think its bad to have people like that testing, but you'd need a test team to write the test for them or have those people specifically interested in testing the software.

I've had a project where we as testers got out most bugs during test phase, after that it went to staging and there were a few business people who always jumped on testing it there and found bugs we couldn't think of cause they just knew the business flows so well and we had to go off what our product owners said.

Leaving all testing to a non-testing team isn't gonna work

[–] [email protected] 0 points 2 days ago (1 children)

Programmer should have written all the test cases, and I just run the batches, and print out where their cases failed.

[–] [email protected] 25 points 2 days ago (2 children)

Ewww, no. The programmer should have run their unit tests, maybe even told you about them. You should be testing for edge cases not covered by the unit tests at a minimum and replicating the unit tests if they don't appear to be very thorough.

[–] mspencer712 7 points 1 day ago

This.

My units and integration tests are for the things I thought of, and more importantly, don’t want to accidentally break in the future. I will be monumentally stupid a year from now and try to destroy something because I forgot it existed.

Testers get in there and play, be creative, be evil, and they discuss what they find. Is this a problem? Do we want to get out in front of it before the customer finds it? They aren’t the red team, they aren’t the enemy. We sharpen each other. And we need each other.

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

I think that the main difference is that developers tend to test for success (i.e. does it work as defined) and that testers should also test that it doesn’t fail when a user gets hold of it.