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.
