Added inheritSetup method

        This allows running at test from within another test.  Do the
        following:

        sub_test = SomeTestClass()  # Create an instance of the test class
        sub_test.inheritSetup(self) # Inherit setup of parent
        sub_test.runTest()          # Run the test

        Normally, only the parent's setUp and tearDown are called and
        the state after the sub_test is run must be taken into account
        by subsequent operations.
1 file changed
tree: a4a105d7658e711ba10fe42d4ccdef8bdf1907a2
  1. LICENSE
  2. README
  3. doc/
  4. src/
  5. tests/
  6. tools/