Home
last modified time | relevance | path

Searched refs:CLASS_NAME (Results 1 – 19 of 19) sorted by relevance

/tools/tradefederation/core/tests/src/com/android/tradefed/log/
DLogUtilFuncTest.java33 private static final String CLASS_NAME = "LogUtilFuncTest"; field in LogUtilFuncTest
37 Log.v(CLASS_NAME, "this is the real Log.v"); in testCLog_v()
43 Log.d(CLASS_NAME, "this is the real Log.d"); in testCLog_d()
49 Log.i(CLASS_NAME, "this is the real Log.i"); in testCLog_i()
55 Log.w(CLASS_NAME, "this is the real Log.w"); in testCLog_w()
61 Log.e(CLASS_NAME, "this is the real Log.e"); in testCLog_e()
71 assertTrue(CLASS_NAME.equals(klass)); in testCLog_getClassName()
79 assertEquals(CLASS_NAME, klass); in testCLog_findCallerClassName()
99 assertEquals(CLASS_NAME, klass); in testCLog_findCallerClassName_callerDeeperInStackTrace()
/tools/tradefederation/core/tests/src/com/android/tradefed/result/
DInvocationToJUnitResultForwarderTest.java34 private static final String CLASS_NAME = "className"; field in InvocationToJUnitResultForwarderTest
47 mTestIdentifier = new TestDescription(CLASS_NAME, TEST_NAME); in setUp()
/tools/tradefederation/core/tests/src/com/android/tradefed/util/
DLocalRunInstructionBuilderTest.java39 private static final String CLASS_NAME = "class_name"; field in LocalRunInstructionBuilderTest
77 TestDescription testId = new TestDescription(CLASS_NAME, METHOD_NAME); in testGetInstruction_withTestId()
97 TestDescription testId = new TestDescription(CLASS_NAME, METHOD_NAME_WITH_PARAMETER); in testGetInstruction_withTestIdAndParameter()
/tools/asuite/atest/
Dunittest_constants.py39 CLASS_NAME = 'CtsDeviceJankUi' variable
147 'name': CLASS_NAME,
157 TEST_MAPPING_TEST_WITH_OPTION_STR = '%s (arg1: val1, arg2:)' % CLASS_NAME
159 'name': CLASS_NAME,
168 'name': CLASS_NAME,
Dcli_translator_unittest.py67 if test_name == uc.CLASS_NAME:
114 mult_test = [uc.MODULE_NAME, uc.CLASS_NAME]
179 mult_test = [uc.MODULE_NAME, uc.CLASS_NAME]
222 self.args.tests = [uc.CLASS_NAME]
233 self.args.tests = [uc.MODULE_NAME, uc.CLASS_NAME]
/tools/tradefederation/core/atest/
Dunittest_constants.py36 CLASS_NAME = 'CtsDeviceJankUi' variable
144 'name': CLASS_NAME,
154 TEST_MAPPING_TEST_WITH_OPTION_STR = '%s (arg1: val1, arg2:)' % CLASS_NAME
156 'name': CLASS_NAME,
165 'name': CLASS_NAME,
Dcli_translator_unittest.py66 if test_name == uc.CLASS_NAME:
113 mult_test = [uc.MODULE_NAME, uc.CLASS_NAME]
178 mult_test = [uc.MODULE_NAME, uc.CLASS_NAME]
221 self.args.tests = [uc.CLASS_NAME]
232 self.args.tests = [uc.MODULE_NAME, uc.CLASS_NAME]
/tools/tradefederation/core/src/com/android/tradefed/device/helper/
DTelephonyHelper.java42 private static final String CLASS_NAME = ".SimCardUtil"; field in TelephonyHelper
53 new TestDescription(PACKAGE_NAME + CLASS_NAME, METHOD_NAME);
107 runner.setMethodName(PACKAGE_NAME + CLASS_NAME, METHOD_NAME); in getSimInfo()
/tools/tradefederation/core/src/com/android/tradefed/config/
DConfigurationUtil.java46 public static final String CLASS_NAME = "class"; field in ConfigurationUtil
127 serializer.attribute(null, CLASS_NAME, obj.getClass().getName()); in dumpClassToXml()
132 serializer.attribute(null, CLASS_NAME, obj.getClass().getName()); in dumpClassToXml()
/tools/tradefederation/core/atest/test_finders/
Dmodule_finder_unittest.py35 MODULE_CLASS = '%s:%s' % (uc.MODULE_NAME, uc.CLASS_NAME)
160 t_infos = self.mod_finder.find_test_by_class_name(uc.CLASS_NAME)
166 class_with_method = '%s#%s' % (uc.CLASS_NAME, uc.METHOD_NAME)
179 uc.CLASS_NAME, uc.MODULE_NAME, uc.CONFIG_FILE)
187 t_infos = self.mod_finder.find_test_by_class_name(uc.CLASS_NAME,
227 bad_module = '%s:%s' % ('BadMod', uc.CLASS_NAME)
423 class_path = '%s.kt' % uc.CLASS_NAME
429 class_path = '%s.java' % uc.CLASS_NAME
Dtest_finder_utils_unittest.py125 paths = [os.path.join(uc.ROOT, CLASS_DIR, uc.CLASS_NAME + '.java')]
128 paths = [os.path.join(uc.ROOT, CLASS_DIR, uc.CLASS_NAME + '.java')]
132 paths = [os.path.join(uc.ROOT, CLASS_DIR, uc.CLASS_NAME + '.java')]
162 paths = [os.path.join(uc.ROOT, CLASS_DIR, uc.CLASS_NAME + '.java')]
172 uc.CLASS_NAME), [])
175 uc.CLASS_NAME), [])
/tools/asuite/atest/test_finders/
Dmodule_finder_unittest.py38 MODULE_CLASS = '%s:%s' % (uc.MODULE_NAME, uc.CLASS_NAME)
163 t_infos = self.mod_finder.find_test_by_class_name(uc.CLASS_NAME)
169 class_with_method = '%s#%s' % (uc.CLASS_NAME, uc.METHOD_NAME)
182 uc.CLASS_NAME, uc.MODULE_NAME, uc.CONFIG_FILE)
190 t_infos = self.mod_finder.find_test_by_class_name(uc.CLASS_NAME,
230 bad_module = '%s:%s' % ('BadMod', uc.CLASS_NAME)
426 class_path = '%s.kt' % uc.CLASS_NAME
432 class_path = '%s.java' % uc.CLASS_NAME
Dtest_finder_utils_unittest.py128 paths = [os.path.join(uc.ROOT, CLASS_DIR, uc.CLASS_NAME + '.java')]
131 paths = [os.path.join(uc.ROOT, CLASS_DIR, uc.CLASS_NAME + '.java')]
135 paths = [os.path.join(uc.ROOT, CLASS_DIR, uc.CLASS_NAME + '.java')]
165 paths = [os.path.join(uc.ROOT, CLASS_DIR, uc.CLASS_NAME + '.java')]
175 uc.CLASS_NAME), [])
178 uc.CLASS_NAME), [])
/tools/tradefederation/core/common_util/com/android/tradefed/log/
DLogUtil.java68 protected static final String CLASS_NAME = CLog.class.getName(); field in LogUtil.CLog
341 if (!className.equals(CLASS_NAME)) { in findCallerClassName()
/tools/tradefederation/core/src/com/android/tradefed/cluster/
DSubprocessConfigBuilder.java92 serializer.attribute(null, ConfigurationUtil.CLASS_NAME, REPORTER_CLASS); in build()
/tools/asuite/atest/tools/
Datest_tools_unittest.py95 self.assertFalse(uc.CLASS_NAME in _cache)
/tools/tradefederation/core/atest/tools/
Datest_tools_unittest.py93 self.assertFalse(uc.CLASS_NAME in _cache)
/tools/tradefederation/contrib/src/com/android/performance/tests/
DAppTransitionTests.java69 private static final String CLASS_NAME = "com.android.apptransition.tests.AppTransitionTests"; field in AppTransitionTests
328 runner.setMethodName(CLASS_NAME, testName); in createRemoteAndroidTestRunner()
/tools/tradefederation/core/tests/res/testdata/
Dtradefed-prebuilt-cts-8.0_r21.jarMETA-INF/ META-INF/MANIFEST.MF jline/ jline/CompletionHandler.class CompletionHandler ...