summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/core/tests/cases/loader/threaded/threaded_module.py
blob: 63d17e04018e471b7dfe28e7345244350a87dc54 (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 ThreadedTestModule(OETestCase):
    def test_threaded_module(self):
        self.assertTrue(True, msg='How is this possible?')

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