Searched refs:tfi (Results 1 – 5 of 5) sorted by relevance
/test/vts/utils/python/instrumentation/ |
D | test_framework_instrumentation_test.py | 20 from vts.utils.python.instrumentation import test_framework_instrumentation as tfi unknown 34 tfi.counts = {} 53 event = tfi.Begin(self.name, self.category, enable_logging=False) 63 event = tfi.Begin(self.name, self.category) 65 tfi.End(self.name, self.category) 71 event = tfi.Begin(self.name, self.category) 79 self.assertTrue(tfi.categories.Add(self.name, self.category)) 80 self.assertFalse(tfi.categories.Add('', self.name)) 81 self.assertFalse(tfi.categories.Add(None, self.name)) 82 self.assertFalse(tfi.categories.Add('1a', self.name)) [all …]
|
D | test_framework_instrumentation_test_submodule.py | 17 from vts.utils.python.instrumentation import test_framework_instrumentation as tfi unknown 24 tfi.End(name, category)
|
/test/vts/runners/host/ |
D | base_test.py | 43 from vts.utils.python.instrumentation import test_framework_instrumentation as tfi unknown 217 event = tfi.Begin('base_test registering android_device. ' 219 tfi.categories.FRAMEWORK_SETUP) 446 event = tfi.Begin('_setUpClass method for test class', 447 tfi.categories.TEST_CLASS_SETUP) 489 event_sub = tfi.Begin('setUpClass method from test script', 490 tfi.categories.TEST_CLASS_SETUP, 513 event = tfi.Begin('_tearDownClass method for test class', 514 tfi.categories.TEST_CLASS_TEARDOWN) 517 event_sub = tfi.Begin('tearDownClass method from test script', [all …]
|
D | test_runner.py | 38 from vts.utils.python.instrumentation import test_framework_instrumentation as tfi unknown 56 event = tfi.Begin('Test runner main method') 72 tfi.CompileResults() 296 event = tfi.Begin('test_runner registerController', 297 tfi.categories.FRAMEWORK_SETUP) 357 event = tfi.Begin('test_runner unregisterControllers', 358 tfi.categories.FRAMEWORK_TEARDOWN)
|
/test/vts/utils/python/controllers/ |
D | android_device.py | 43 from vts.utils.python.instrumentation import test_framework_instrumentation as tfi unknown 797 event = tfi.Begin("start adb logcat from android_device", 798 tfi.categories.FRAMEWORK_SETUP) 822 event = tfi.Begin("stop adb logcat from android_device", 823 tfi.categories.FRAMEWORK_TEARDOWN) 1164 event = tfi.Begin("start vts services", 1165 tfi.categories.FRAMEWORK_SETUP) 1270 event = tfi.Begin("start vts agent", tfi.categories.FRAMEWORK_SETUP) 1274 event_cleanup = tfi.Begin("start vts agent -- cleanup", tfi.categories.FRAMEWORK_SETUP)
|