Home
last modified time | relevance | path

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

/cts/suite/audio_quality/test/
DTaskTest.cpp25 TaskCase* mTestCase; member in TaskTest
68 mTestCase = new TaskCase(); in SetUp()
71 ASSERT_TRUE(mTestCase->addChild(mTaskSetup)); in SetUp()
72 ASSERT_TRUE(mTestCase->addChild(mTaskAction)); in SetUp()
87 if(mTestCase != NULL) { in TearDown()
88 delete mTestCase; in TearDown()
99 ASSERT_TRUE(mTaskSetup->getTestCase() == mTestCase); in TEST_F()
100 ASSERT_TRUE(mTaskAction->getTestCase() == mTestCase); in TEST_F()
101 ASSERT_TRUE(mTaskSequential->getTestCase() == mTestCase); in TEST_F()
102 ASSERT_TRUE(mTaskProcess->getTestCase() == mTestCase); in TEST_F()
[all …]
DTaskSequentialTest.cpp20 TaskCase* mTestCase; member in TaskSequentialTest
27 mTestCase = getTaskCase(setup, action); in SetUp()
28 ASSERT_TRUE(mTestCase != NULL); in SetUp()
36 delete mTestCase; in TearDown()
53 std::list<TaskCase::IndexPair>* indices = mTestCase->findAllIndices(RE); in TEST_F()
58 ASSERT_TRUE(mTestCase->findIndex(I, index)); in TEST_F()
DTaskProcessTest.cpp22 TaskCase* mTestCase; member in TaskProcessTest
30 mTestCase = getTaskCase(setup, action); in SetUp()
31 ASSERT_TRUE(mTestCase != NULL); in SetUp()
48 delete mTestCase; in TearDown()
/cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
DTestModuleConfigHandler.java44 private ConfigMetadata.TestClass.Builder mTestCase; field in TestModuleConfigHandler
51 mTestCase = null; in TestModuleConfigHandler()
69 mTestCase = ConfigMetadata.TestClass.newBuilder(); in startElement()
70 mTestCase.setTestClass(attributes.getValue(CLASS_TAG)); in startElement()
82 if (null != mTestCase) { in startElement()
83 mTestCase.addOptions(option); in startElement()
97 mConfigMetadata.addTestClasses(mTestCase); in endElement()
98 mTestCase = null; in endElement()
/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/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 onResume()
151 mTestCase.start(this); in onResume()
161 mTestCase.stop(); in onPause()
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 onResume()
124 mTestCase.stop(); in onPause()
/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/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/tests/framework/base/windowmanager/src/android/server/wm/intent/
DIntentTests.java88 private TestCase mTestCase; field in IntentTests
91 mTestCase = testCase; in IntentTests()
107 mLaunchRunner.verify(TARGET_CONTEXT, mTestCase); in verify()
119 return mTestCase.getSetup().componentsInCase(); in activitiesUsedInTest()
/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()
116 mTestCase.stop(); in onStop()
/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/common/device-side/util-axt/src/com/android/compatibility/common/util/
DBusinessLogicTestCase.java53 @Rule public TestName mTestCase = new TestName(); field in BusinessLogicTestCase
65 executeBusinessLogicForTest(mTestCase.getMethodName()); in executeBusinessLogic()