Home
last modified time | relevance | path

Searched refs:klass (Results 1 – 10 of 10) sorted by relevance

/tools/tradefederation/core/tests/src/com/android/tradefed/log/
DLogUtilFuncTest.java123 String klass = CLog.getClassName(1); in testCLog_getClassName() local
124 assertTrue(CLASS_NAME.equals(klass)); in testCLog_getClassName()
131 String klass = CLog.findCallerClassName(); in testCLog_findCallerClassName() local
132 assertEquals(CLASS_NAME, klass); in testCLog_findCallerClassName()
151 String klass = CLog.findCallerClassName(t); in testCLog_findCallerClassName_callerDeeperInStackTrace() local
152 assertEquals(CLASS_NAME, klass); in testCLog_findCallerClassName_callerDeeperInStackTrace()
164 String klass = CLog.findCallerClassName(t); in testCLog_findCallerClassName_emptyStackTrace() local
165 assertEquals("Unknown", klass); in testCLog_findCallerClassName_emptyStackTrace()
/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/
DFakeTestTest.java300 private void testPassExpectations(ITestInvocationListener l, String klass, in testPassExpectations() argument
303 final TestDescription test = new TestDescription(klass, name); in testPassExpectations()
309 ITestInvocationListener l, String klass, int idx, String log) { in testPassExpectations() argument
311 final TestDescription test = new TestDescription(klass, name); in testPassExpectations()
317 private void testFailExpectations(ITestInvocationListener l, String klass, in testFailExpectations() argument
320 final TestDescription test = new TestDescription(klass, name); in testFailExpectations()
326 private void testAssumptionExpectations(ITestInvocationListener l, String klass, int idx) { in testAssumptionExpectations() argument
328 final TestDescription test = new TestDescription(klass, name); in testAssumptionExpectations()
334 private void testIgnoredExpectations(ITestInvocationListener l, String klass, int idx) { in testIgnoredExpectations() argument
336 final TestDescription test = new TestDescription(klass, name); in testIgnoredExpectations()
DDeviceJUnit4ClassRunnerTest.java58 public TestableRunner(Class<?> klass) throws InitializationError { in TestableRunner() argument
59 super(klass); in TestableRunner()
DHostTestTest.java347 public InvalidJunit4Runner(Class<?> klass) throws InitializationError { in InvalidJunit4Runner() argument
348 super(klass); in InvalidJunit4Runner()
/tools/tradefederation/contrib/src/com/android/continuous/
DSmokeTest.java98 final String klass = in mangleTestId() local
103 return new TestDescription(klass, method); in mangleTestId()
/tools/tradefederation/core/src/com/android/tradefed/testtype/junit4/
DDeviceParameterizedRunner.java71 public DeviceParameterizedRunner(Class<?> klass) throws InitializationError { in DeviceParameterizedRunner() argument
72 super(klass); in DeviceParameterizedRunner()
DLongevityHostRunner.java94 public LongevityHostRunner(Class<?> klass) { in LongevityHostRunner() argument
95 mSuiteKlass = klass; in LongevityHostRunner()
/tools/tradefederation/core/src/com/android/tradefed/device/metric/
DScheduleMultipleDeviceMetricCollector.java90 Class<?> klass = Class.forName(metricCollectorClass); in initMetricCollectors() local
93 klass.asSubclass(ScheduledDeviceMetricCollector.class).newInstance(); in initMetricCollectors()
/tools/tradefederation/core/src/com/android/tradefed/testtype/
DDeviceSuite.java54 public DeviceSuite(Class<?> klass, RunnerBuilder builder) throws InitializationError { in DeviceSuite() argument
55 super(klass, builder); in DeviceSuite()
DDeviceJUnit4ClassRunner.java75 public DeviceJUnit4ClassRunner(Class<?> klass) throws InitializationError { in DeviceJUnit4ClassRunner() argument
76 super(klass); in DeviceJUnit4ClassRunner()