Python unittest: How to assert the existence of a file or folder and print the path on failure?
In a python test case, I would like to assert the existence of a file or folder AND provide a useful error message in case the assertion fails. How could I do this? The following of course works, ...
stackoverflow.com