oetag.py 506 B

123456789101112131415161718192021
  1. #
  2. # Copyright (C) 2016 Intel Corporation
  3. #
  4. # SPDX-License-Identifier: MIT
  5. #
  6. from oeqa.core.case import OETestCase
  7. from oeqa.core.decorator.oetag import OETestTag
  8. class TagTest(OETestCase):
  9. @OETestTag('goodTag')
  10. def testTagGood(self):
  11. self.assertTrue(True, msg='How is this possible?')
  12. @OETestTag('otherTag')
  13. def testTagOther(self):
  14. self.assertTrue(True, msg='How is this possible?')
  15. def testTagNone(self):
  16. self.assertTrue(True, msg='How is this possible?')