oeid.py 443 B

123456789101112131415
  1. # Copyright (C) 2016 Intel Corporation
  2. # Released under the MIT license (see COPYING.MIT)
  3. from oeqa.core.case import OETestCase
  4. class AnotherIDTest(OETestCase):
  5. def testAnotherIdGood(self):
  6. self.assertTrue(True, msg='How is this possible?')
  7. def testAnotherIdOther(self):
  8. self.assertTrue(True, msg='How is this possible?')
  9. def testAnotherIdNone(self):
  10. self.assertTrue(True, msg='How is this possible?')