Home
last modified time | relevance | path

Searched refs:mTestCase (Results 1 – 12 of 12) sorted by relevance

/cts/tools/release-parser/src/com/android/cts/releaseparser/
DTestModuleConfigHandler.java48 private TestModuleConfig.TestClass.Builder mTestCase; field in TestModuleConfigHandler
53 mTestCase = null; in TestModuleConfigHandler()
73 mTestCase = TestModuleConfig.TestClass.newBuilder(); in startElement()
74 mTestCase.setTestClass(attributes.getValue(CLASS_TAG)); in startElement()
88 if (null != mTestCase) { in startElement()
89 mTestCase.addOptions(option); in startElement()
120 mTestModuleConfig.addTestClasses(mTestCase); in endElement()
121 mTestCase = null; in endElement()
/cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
DTestModuleConfigHandler.java45 private ConfigMetadata.TestClass.Builder mTestCase; field in TestModuleConfigHandler
52 mTestCase = null; in TestModuleConfigHandler()
70 mTestCase = ConfigMetadata.TestClass.newBuilder(); in startElement()
71 mTestCase.setTestClass(attributes.getValue(CLASS_TAG)); in startElement()
83 if (null != mTestCase) { in startElement()
84 mTestCase.addOptions(option); in startElement()
98 mConfigMetadata.addTestClasses(mTestCase); in endElement()
99 mTestCase = null; in endElement()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/
DRequesterTestActivity.java67 private ReqTestCase mTestCase; field in RequesterTestActivity
117 mTestCase = getTestCase(this, testId); in onCreate()
118 setTitle(mTestCase.getTestName()); in onCreate()
150 mTestCase.setTargetAddress(sTargetAddr); in onStart()
151 mTestCase.start(this); in onStart()
161 mTestCase.stop(); in onStop()
166 return mTestCase.getTestId(); in getTestId()
264 mTestCase.start(getTestCaseListener()); in searchTarget()
302 mTestCase.setTargetAddress(sTargetAddr); in showSelectTargetDialog()
303 mTestCase.start(getTestCaseListener()); in showSelectTargetDialog()
DResponderTestActivity.java49 private TestCase mTestCase; field in ResponderTestActivity
95 mTestCase = getTestCase(this); in onCreate()
106 mTestCase.start(this); in onStart()
124 mTestCase.stop(); in onStop()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/wifiaware/
DBaseTestActivity.java44 private BaseTestCase mTestCase; field in BaseTestActivity
62 mTestCase = getTestCase(this); in onCreate()
71 mTestCase.start(this); in onResume()
78 mTestCase.stop(); in onPause()
/cts/tests/framework/base/windowmanager/src/android/server/wm/intent/
DIntentTests.java82 private TestCase mTestCase; field in IntentTests
85 mTestCase = testCase; in IntentTests()
101 mLaunchRunner.verify(TARGET_CONTEXT, mTestCase); in verify()
113 return mTestCase.getSetup().componentsInCase(); in activitiesUsedInTest()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/base/
DSensorCtsTestResult.java152 private final TestCase mTestCase; field in SensorCtsTestResult.TestNode
155 mTestCase = testCase; in TestNode()
160 return mTestCase.getClass().getSimpleName() + "_" + mTestCase.getName(); in getName()
/cts/common/device-side/util-axt/src/com/android/compatibility/common/util/
DExtraBusinessLogicTestCase.java55 + "configuration.", mTestCase.getMethodName()), mCanReadBusinessLogic); in handleBusinessLogic()
58 "Skipping Business Logic for %s", mTestCase.getMethodName())); in handleBusinessLogic()
DBusinessLogicTestCase.java53 @Rule public TestName mTestCase = new TestName(); field in BusinessLogicTestCase
65 executeBusinessLogicForTest(mTestCase.getMethodName()); in executeBusinessLogic()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/wifi/
DBaseTestActivity.java53 private BaseTestCase mTestCase; field in BaseTestActivity
102 mTestCase.start(this, mSsidValue, mPskValue == null ? "" : mPskValue); in onCreate()
107 mTestCase = getTestCase(this); in onCreate()
115 mTestCase.stop(); in onDestroy()
/cts/tests/tests/opengl/src/android/opengl/cts/
DOpenGLES20NativeActivityOne.java111 private int mTestCase = -1; field in GL2Renderer
119 this.mTestCase = testcase; in GL2Renderer()
129 GL2JniLibOne.init(mCategory, mTestCase, width, height); in onSurfaceChanged()
/cts/tests/framework/base/windowmanager/src/android/server/wm/window/
DCrossAppDragAndDropTests.java130 assumeTrue(mTestCase.supportsSplitScreenMultiWindow());
136 mTestCase.launchSplitScreenActivities(
150 assumeTrue(mTestCase.supportsFreeform());
156 mTestCase.launchFreeformActivities(
189 mActivityLaunchModeContext.mTestCase = this; in setUp()
511 CrossAppDragAndDropTests mTestCase; field in CrossAppDragAndDropTests.ActivityLaunchModeContext