[Python-Dev] unit testing and Python regression test

Jeremy Hylton jeremy@alum.mit.edu
Fri, 1 Dec 2000 16:21:27 -0500 (EST)


>>>>> "AMK" == Andrew Kuchling <akuchlin@mems-exchange.org> writes:

  AMK> On Fri, Dec 01, 2000 at 03:55:28PM -0500, Jeremy Hylton wrote:
  >> Is there any documentation for the Quixote unittest tool?  The
  >> Example page is helpful, but it feels like there are some details
  >> that are not explained.

  AMK> I don't believe we've written docs at all for internal use.
  AMK> What details seem to be missing?

Details:

   - I assume setup/shutdown are equivalent to setUp/tearDown 
   - Is it possible to override constructor for TestScenario?
   - Is there something equivalent to PyUnit self.assert_
   - What does parse_args() do?
   - What does run_scenarios() do?
   - If I have multiple scenarios, how do I get them to run?

Jeremy