1# 2# Copyright (C) 2016 Intel Corporation 3# 4# SPDX-License-Identifier: MIT 5# 6 7from oeqa.core.case import OETestCase 8 9class AnotherTest(OETestCase): 10 11 def testAnother(self): 12 self.assertTrue(True, msg='How is this possible?') 13
1# 2# Copyright (C) 2016 Intel Corporation 3# 4# SPDX-License-Identifier: MIT 5# 6 7from oeqa.core.case import OETestCase 8 9class AnotherTest(OETestCase): 10 11 def testAnother(self): 12 self.assertTrue(True, msg='How is this possible?') 13