1""" 2Add a test to verify our test instance returns something non-None for 3an id(). Other parts of the test running infrastructure are counting on this. 4""" 5 6from lldbsuite.test.lldbtest import TestBase 7 8class TestIdTestCase(TestBase): 9 10 NO_DEBUG_INFO_TESTCASE = True 11 12 mydir = TestBase.compute_mydir(__file__) 13 14 def test_id_exists(self): 15 self.assertIsNotNone(self.id(), "Test instance should have an id()") 16 17