The OEQA framework has internal methods for provide functionality
in decorators so Test components aren't expected to override it.
Use the base unittest methods for setUp and tearDown.
Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
# target instance set by OERuntimeTestLoader.
target = None
- def _oeSetUp(self):
- super(OERuntimeTestCase, self)._oeSetUp()
+ def setUp(self):
+ super(OERuntimeTestCase, self).setUp()
install_package(self)
- def _oeTearDown(self):
- super(OERuntimeTestCase, self)._oeTearDown()
+ def tearDown(self):
+ super(OERuntimeTestCase, self).tearDown()
uninstall_package(self)