summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/core/tests/cases/loader/threaded/threaded.py
blob: 0fe4cb3f116f498cbb6a32c9c116294b2223c23c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# Copyright (C) 2017 Intel Corporation
# Released under the MIT license (see COPYING.MIT)

from oeqa.core.case import OETestCase

class ThreadedTest(OETestCase):
    def test_threaded_no_depends(self):
        self.assertTrue(True, msg='How is this possible?')

class ThreadedTest2(OETestCase):
    def test_threaded_same_module(self):
        self.assertTrue(True, msg='How is this possible?')