Python's unittest logic - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T08:57:13Z http://stackoverflow.com/feeds/question/72422 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/72422/pythons-unittest-logic 2 Python's unittest logic Mingus Rude 2008-09-16T13:50:25Z 2008-10-20T13:39:52Z <p>Can someone explain this result to me. The first test succeeds but the second fails, although the variable tested is changed in the first test.</p> <pre><code>&gt;&gt;&gt; class MyTest(unittest.TestCase): def setUp(self): self.i = 1 def testA(self): self.i = 3 self.assertEqual(self.i, 3) def testB(self): self.assertEqual(self.i, 3) &gt;&gt;&gt; unittest.main() .F ====================================================================== FAIL: testB (__main__.MyTest) ---------------------------------------------------------------------- Traceback (most recent call last): File "&lt;pyshell#61&gt;", line 8, in testB AssertionError: 1 != 3 ---------------------------------------------------------------------- Ran 2 tests in 0.016s </code></pre> http://stackoverflow.com/questions/72422/pythons-unittest-logic/72498#72498 0 Answer by mmaibaum for Python's unittest logic mmaibaum 2008-09-16T13:54:38Z 2008-09-16T13:54:38Z <p>If I recall correctly in that test framework the setUp method is run before each test</p> http://stackoverflow.com/questions/72422/pythons-unittest-logic/72504#72504 5 Answer by pjz for Python's unittest logic pjz 2008-09-16T13:55:02Z 2008-09-16T16:12:04Z <p>From <a href="http://docs.python.org/lib/minimal-example.html" rel="nofollow">http://docs.python.org/lib/minimal-example.html</a> :</p> <blockquote> <p>When a setUp() method is defined, the test runner will run that method prior to each test.</p> </blockquote> <p>So setUp() gets run before both testA and testB, 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.</p> http://stackoverflow.com/questions/72422/pythons-unittest-logic/72702#72702 -1 Answer by Jon Homan for Python's unittest logic Jon Homan 2008-09-16T14:12:08Z 2008-09-16T14:12:08Z <p>The setUp method, as everyone else has said, runs before every test method you write. So, when testB runs, the value of i is 1, not 3.</p> <p>You can also use a tearDown method which runs after every test method. However if one of your tests crashes, your tearDown method will never run.</p> http://stackoverflow.com/questions/72422/pythons-unittest-logic/73791#73791 2 Answer by Sebastian Rittau for Python's unittest logic Sebastian Rittau 2008-09-16T15:47:30Z 2008-09-16T22:30:39Z <p>Each test is run 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.</p> <p>Additionally, as others have pointed out, setUp is called before each test.</p> http://stackoverflow.com/questions/72422/pythons-unittest-logic/215576#215576 0 Answer by Roman Plášil for Python's unittest logic Roman Plášil 2008-10-18T21:13:18Z 2008-10-18T21:13:18Z <p>From a methodological point of view, individual tests should be independent, otherwise it can produce more hard-to-find bugs. Imagine for instance that testA and testB would be called in a different order.</p>