how do you get unit test coverage for:
try:
a = 1+1
except:
LOGGER.warning("Someone changed that code, didn't they")
Seems like there should be a functional programming trick to do it with lambdas and what not.
#python
Post
January 22, 2020
January 22, 2020
how do you get unit test coverage for:
try:
a = 1+1
except:
LOGGER.warning("Someone changed that code, didn't they")
Seems like there should be a functional programming trick to do it with lambdas and what not.
#python