When using the 'unittest' framework, which method is executed exactly once before any test methods in a class are run?
This is the correct class method to run setup code once for the entire class.
Why this answer
The 'setUpClass' method is a class method that runs once before all tests in the class, whereas 'setUp' runs before each individual test.