show/hide this revision's text 2 grammatical fix

Each test is run with a different using a new instance of the MyTest class. That means if you change self in one test, changes will not carry over to other tests, since self will refer to a different instance.

Additionally, as others have pointed out, setUp is called before each test.

show/hide this revision's text 1

Each test is run with a different a new instance of the MyTest class. That means if you change self in one test, changes will not carry over to other tests, since self will refer to a different instance.

Additionally, as others have pointed out, setUp is called before each test.