summaryrefslogtreecommitdiffstats
path: root/poky/meta/lib/oeqa/core/tests/cases/oeid.py
diff options
context:
space:
mode:
Diffstat (limited to 'poky/meta/lib/oeqa/core/tests/cases/oeid.py')
-rw-r--r--poky/meta/lib/oeqa/core/tests/cases/oeid.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/poky/meta/lib/oeqa/core/tests/cases/oeid.py b/poky/meta/lib/oeqa/core/tests/cases/oeid.py
new file mode 100644
index 000000000..c2d3d32f2
--- /dev/null
+++ b/poky/meta/lib/oeqa/core/tests/cases/oeid.py
@@ -0,0 +1,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?')
OpenPOWER on IntegriCloud