DEV Community

Discussion on: What are your biggest problems with unit testing?

 
alexbunardzic profile image
Alex Bunardzic

Sorry, probably misread your comment. Still not sure I understand how is it possible that a change in the input value breaks the test? Please explain.

Thread Thread
 
bengreenberg profile image
Ben Greenberg

If a test's expectation is linked to the exact desired output, then changing the input, for example, the wording in the hypothetical markdown file, will break the test. In my experience, this is something not to do, because it adds unnecessary fragility to the unit test. That's what I was saying.

Have a great weekend!

Thread Thread
 
rossdrew profile image
Ross • Edited

Agree. That's a problem in general with unit testing infinitely variable textual values. It's almost never a case for unit testing if you end up trying.