I use python unittest framework to do the integration test. To eliminate the confusion, I would like to inherit TestCase class in a way as "integrationtest.TestCase" instead of "unittest.TestCase".
Furthermore it will be even nicer if I can also do "import integrationtest" rather than "import unittest", similar for "unittest.main()", better to call it with "integrationtest.main()"
I'm new to python and unittest framework. Could you kindly give some advices?