summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/core/tests/cases/oeid.py
blob: c2d3d32f2dbc306d82819b828df62431667c3938 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Copyright (C) 2016 Intel Corporation
# Released under the MIT license (see COPYING.MIT)

from oeqa.core.case import OETestCase
from oeqa.core.decorator.oeid import OETestID

class IDTest(OETestCase):

    @OETestID(101)
    def testIdGood(self):
        self.assertTrue(True, msg='How is this possible?')

    @OETestID(102)
    def testIdOther(self):
        self.assertTrue(True, msg='How is this possible?')

    def testIdNone(self):
        self.assertTrue(True, msg='How is this possible?')