show/hide this revision's text 2 added 168 characters in body

From http://docs.python.org/lib/minimal-example.html :

When a setUp() method is defined, the test runner will run that method prior to each test.

So setUp() gets run before both testA and testB, resetting setting i to 1 each time. Behind the scenes, the entire test object is actually being re-instantiated for each test, with setUp() being run on each new instantiation before the test is executed.

show/hide this revision's text 1

From http://docs.python.org/lib/minimal-example.html :

When a setUp() method is defined, the test runner will run that method prior to each test.

So setUp() gets run before both testA and testB, resetting i to 1 each time.