brintos

brintos / llvm-project-archived public Read only

0
0
Text · 378 B · db9ebaf Raw
14 lines · python
1"""2Add a test to verify our test instance returns something non-None for3an id(). Other parts of the test running infrastructure are counting on this.4"""5 6from lldbsuite.test.lldbtest import TestBase7 8 9class TestIdTestCase(TestBase):10    NO_DEBUG_INFO_TESTCASE = True11 12    def test_id_exists(self):13        self.assertIsNotNone(self.id(), "Test instance should have an id()")14