Vlyn@lemmy.worldtoProgrammer Humor@lemmy.ml•You need to send an API Request to apply for a job in this companyEnglish
56·
1 year agoHonestly that’s more user friendly than 9 out of 10 application forms I’ve run into.
The best way for me to avoid this mess for now has always been an email with my pdf files attached.
TDD is great when you have a very narrow use case, for example an algorithm. Where you already know beforehand: If I throw A in B should come out. If I throw B in C should come out. If I throw Z in an error should be thrown. And so on.
For that it’s awesome, which is mostly algorithms.
In real CRUD apps though? You have to write the actual implementation before the tests. Because in the tests you have to mock all the dependencies you used. Come up with fake test data. Mock functions from other classes you aren’t currently testing and so on. You could try TDD for this, but then you probably spend ten times longer writing and re-writing tests :-/
After a while it boils down to: Small unit tests where they make sense. Then system wide integration tests for complex use-cases.