When testing a Python class, it can be repetitive and time-consuming to create multiple instances to test a large number of instance methods.
A better approach is to use the setUp method to instantiate a class object before running each test.
setUp
My previous tips on testing.