I'm new to python and unittest framework. This might be a very simple question but somehow I couldn't find the answer I need.
I don't want unittest to report total number of testcases base on test* functions in my code. In my case, I have one test_foo function but actually call another function foo() 100 times. So I want to see 'Ran 100 tests in 5.05s' in final report instead of 'Ran 1 test in 5.05s'.
I also don't want to use ddt. So is there a simple way, for example every time when foo() is called, I can update unittest framework to increase the total number of testcase?