blob: f036982e1f87efab39efcf6c6955046b168fb4c8 [file] [log] [blame]
Brad Bishopc342db32019-05-15 21:57:59 -04001#
Brad Bishop6e60e8b2018-02-01 10:27:11 -05002# Copyright (C) 2016 Intel Corporation
Brad Bishopc342db32019-05-15 21:57:59 -04003#
4# SPDX-License-Identifier: MIT
5#
Brad Bishop6e60e8b2018-02-01 10:27:11 -05006
7from oeqa.core.case import OETestCase
8from oeqa.utils.package_manager import install_package, uninstall_package
9
10class OERuntimeTestCase(OETestCase):
11 # target instance set by OERuntimeTestLoader.
12 target = None
13
Brad Bishopd7bf8c12018-02-25 22:55:05 -050014 def setUp(self):
15 super(OERuntimeTestCase, self).setUp()
Brad Bishop6e60e8b2018-02-01 10:27:11 -050016 install_package(self)
17
Brad Bishopd7bf8c12018-02-25 22:55:05 -050018 def tearDown(self):
19 super(OERuntimeTestCase, self).tearDown()
Brad Bishop6e60e8b2018-02-01 10:27:11 -050020 uninstall_package(self)