1def setup_method(self, method):
2 """ setup any state tied to the execution of the given method in a
3 class. setup_method is invoked for every test method of a class.
4 """
5
6
7def teardown_method(self, method):
8 """ teardown any state that was previously setup with a setup_method
9 call.
10 """
11