I'm running an assertEqual test case for a list of methods in a particular class. These methods are expanded from string form to something callable using getattr().
How can I get unittest to tell me the particular method which failed? Meaning: how can I get unittest to print to stdout the particular parameters which caused the failure of the assert?
Any advice greatly appreciated.
Thanks