oeid.py 499 B

123456789101112131415161718
  1. # Copyright (C) 2016 Intel Corporation
  2. # Released under the MIT license (see COPYING.MIT)
  3. from oeqa.core.case import OETestCase
  4. from oeqa.core.decorator.oeid import OETestID
  5. class IDTest(OETestCase):
  6. @OETestID(101)
  7. def testIdGood(self):
  8. self.assertTrue(True, msg='How is this possible?')
  9. @OETestID(102)
  10. def testIdOther(self):
  11. self.assertTrue(True, msg='How is this possible?')
  12. def testIdNone(self):
  13. self.assertTrue(True, msg='How is this possible?')