# Copyright (C) 2016 Intel Corporation
|
#
|
# SPDX-License-Identifier: MIT
|
#
|
|
from oeqa.core.case import OETestCase
|
from oeqa.core.decorator.depends import OETestDepends
|
|
class OETestExample(OETestCase):
|
def test_example(self):
|
self.logger.info('IMAGE: %s' % self.td.get('IMAGE'))
|
self.assertEqual('core-image-minimal', self.td.get('IMAGE'))
|
self.logger.info('ARCH: %s' % self.td.get('ARCH'))
|
self.assertEqual('x86', self.td.get('ARCH'))
|
|
class OETestExampleDepend(OETestCase):
|
@OETestDepends(['OETestExample.test_example'])
|
def test_example_depends(self):
|
pass
|
|
def test_example_no_depends(self):
|
pass
|