blob: 2f190acf1519186091c3bd6551e361c43ae96fd6 [file] [log] [blame]
Brad Bishop6e60e8b2018-02-01 10:27:11 -05001# Copyright (C) 2016 Intel Corporation
2# Released under the MIT license (see COPYING.MIT)
3
4from oeqa.core.case import OETestCase
5from oeqa.utils.package_manager import install_package, uninstall_package
6
7class OERuntimeTestCase(OETestCase):
8 # target instance set by OERuntimeTestLoader.
9 target = None
10
Brad Bishopd7bf8c12018-02-25 22:55:05 -050011 def setUp(self):
12 super(OERuntimeTestCase, self).setUp()
Brad Bishop6e60e8b2018-02-01 10:27:11 -050013 install_package(self)
14
Brad Bishopd7bf8c12018-02-25 22:55:05 -050015 def tearDown(self):
16 super(OERuntimeTestCase, self).tearDown()
Brad Bishop6e60e8b2018-02-01 10:27:11 -050017 uninstall_package(self)