Searched defs:testCase (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/util/
H A DOrientationUtil.java50 ActivityInstrumentationTestCase2 testCase) {
51 Preconditions.checkNotNull(testCase);
52 return new OrientationUtil(testCase.getActivity(), testCase.getInstrumentation());
49 initializeAndStartActivityIfNotStarted( ActivityInstrumentationTestCase2 testCase) argument
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
H A DPropertyNodesVerifier.java34 public PropertyNodesVerifier(AndroidTestCase testCase) { argument
37 mAndroidTestCase = testCase;
/frameworks/base/test-runner/src/android/test/suitebuilder/
H A DTestMethod.java50 public TestMethod(TestCase testCase) { argument
51 this(testCase.getName(), testCase.getClass());
/frameworks/base/test-runner/src/junit/textui/
H A DTestRunner.java153 String testCase= "";
161 testCase= extractClassName(args[++i]);
165 testCase= arg.substring(0, lastIndex);
170 testCase= args[i];
173 if (testCase.equals(""))
178 return runSingleMethod(testCase, method, wait);
179 Test suite= getTest(testCase);
186 protected TestResult runSingleMethod(String testCase, String method, boolean wait) throws Exception { argument
187 Class<? extends TestCase> testClass= loadSuiteClass(testCase).asSubclass(TestCase.class);
/frameworks/base/cmds/uiautomator/library/testrunner-src/com/android/uiautomator/testrunner/
H A DUiAutomatorTestRunner.java158 for (TestCase testCase : testCases) {
159 prepareTestCase(testCase);
160 testCase.run(testRunResult);
424 * @param testCase
426 protected void prepareTestCase(TestCase testCase) { argument
427 ((UiAutomatorTestCase)testCase).setAutomationSupport(mAutomationSupport);
428 ((UiAutomatorTestCase)testCase).setUiDevice(mUiDevice);
429 ((UiAutomatorTestCase)testCase).setParams(mParams);
/frameworks/base/test-runner/src/android/test/
H A DTestRunner.java395 public void runInPerformanceMode(Object testCase, String className, boolean junitTest, argument
445 junit.textui.TestRunner.run((junit.framework.Test) testCase);
448 Runnable test = (Runnable) testCase;

Completed in 393 milliseconds