Home
last modified time | relevance | path

Searched defs:test (Results 1 – 25 of 79) sorted by relevance

1234

/frameworks/base/test-runner/src/android/test/
DTouchUtils.java52 public static void dragQuarterScreenDown(ActivityInstrumentationTestCase test) { in dragQuarterScreenDown()
61 public static void dragQuarterScreenDown(InstrumentationTestCase test, Activity activity) { in dragQuarterScreenDown()
82 public static void dragQuarterScreenUp(ActivityInstrumentationTestCase test) { in dragQuarterScreenUp()
91 public static void dragQuarterScreenUp(InstrumentationTestCase test, Activity activity) { in dragQuarterScreenUp()
115 public static void scrollToBottom(ActivityInstrumentationTestCase test, ViewGroup v) { in scrollToBottom()
127 public static void scrollToBottom(InstrumentationTestCase test, Activity activity, in scrollToBottom()
150 public static void scrollToTop(ActivityInstrumentationTestCase test, ViewGroup v) { in scrollToTop()
162 public static void scrollToTop(InstrumentationTestCase test, Activity activity, ViewGroup v) { in scrollToTop()
183 public static void dragViewToBottom(ActivityInstrumentationTestCase test, View v) { in dragViewToBottom()
194 public static void dragViewToBottom(InstrumentationTestCase test, Activity activity, View v) { in dragViewToBottom()
[all …]
DTestCaseUtil.java45 public static List<String> getTestCaseNames(Test test, boolean flatten) { in getTestCaseNames()
54 public static List<? extends Test> getTests(Test test, boolean flatten) { in getTests()
58 private static List<? extends Test> getTests(Test test, boolean flatten, in getTests()
124 public static String getTestName(Test test) { in getTestName()
147 Test test = (Test) enumeration.nextElement(); in getTestAtIndex() local
159 Test test = invokeSuiteMethodIfPossible(testClass, in createTestSuite() local
DTestPrinter.java89 private void failed(Test test, Throwable t) { in failed()
94 public void addError(Test test, Throwable t) { in addError()
98 public void addFailure(Test test, junit.framework.AssertionFailedError t) { in addFailure()
102 public void endTest(Test test) { in endTest()
110 public void startTest(Test test) { in startTest()
DAndroidTestRunner.java68 public void setTest(Test test) { in setTest()
72 private void setTest(Test test, Class<? extends Test> testClass) { in setTest()
202 private void setContextIfAndroidTestCase(Test test, Context context, Context testContext) { in setContextIfAndroidTestCase()
214 Test test, Instrumentation instrumentation) { in setInstrumentationIfInstrumentationTestCase()
221 Test test, PerformanceResultsWriter writer) { in setPerformanceWriterIfPerformanceCollectorTestCase()
258 public void testFailed(int status, Test test, Throwable t) { in testFailed()
DTestRunner.java101 public void startTest(Test test) { in startTest()
111 public void endTest(Test test) { in endTest()
124 public void addError(Test test, Throwable t) { in addError()
129 public void addFailure(Test test, junit.framework.AssertionFailedError t) { in addFailure()
290 Runnable test = (Runnable) clazz.newInstance(); in run() local
335 junit.framework.TestCase test = (junit.framework.TestCase) clazz.newInstance(); in run() local
353 Test test = suite.testAt(j); in run() local
448 Runnable test = (Runnable) testCase; in runInPerformanceMode() local
495 junit.framework.TestCase test = (junit.framework.TestCase) clazz.newInstance(); in runSingleJunitTest() local
/frameworks/base/packages/MtpDocumentsProvider/tests/src/com/android/mtp/
DTestResultInstrumentation.java52 public void addError(Test test, Throwable t) { in addError()
58 public void addFailure(Test test, AssertionFailedError t) { in addFailure()
64 public void endTest(Test test) { in endTest()
71 public void startTest(Test test) { in startTest()
79 private void show(String tag, Test test, Throwable t) { in show()
/frameworks/support/tests/java/android/support/v4/provider/
DDocumentFileTest.java114 final DocumentTest test = new DocumentTest() { in testSimple() local
131 final DocumentTest test = new DocumentTest() { in testTraverse() local
163 final DocumentTest test = new DocumentTest() { in testReadAndWrite() local
194 final DocumentTest test = new DocumentTest() { in testMimes() local
219 final DocumentTest test = new DocumentTest() { in testCreate() local
263 final DocumentTest test = new DocumentTest() { in testDelete() local
293 final DocumentTest test = new DocumentTest() { in testRename() local
/frameworks/base/tools/layoutlib/bridge/tests/res/testApp/MyApplication/build/intermediates/classes/androidTest/debug/com/android/layoutlib/test/myapplication/test/
DBuildConfig.class ... BuildConfig.java package com.android.layoutlib.test.myapplication.test public final com.android. ...
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/
DUnitTestSuiteBuilderTest.java73 public void addError(Test test, Throwable t) { in addError()
77 public void addFailure(Test test, AssertionFailedError t) { in addFailure()
81 public void endTest(Test test) { in endTest()
84 public void startTest(Test test) { in startTest()
104 private String testName(Test test) { in testName()
DInstrumentationTestSuiteBuilderTest.java80 public void addError(Test test, Throwable t) { in addError()
84 public void addFailure(Test test, AssertionFailedError t) { in addFailure()
88 public void endTest(Test test) { in endTest()
91 public void startTest(Test test) { in startTest()
111 private String testName(Test test) { in testName()
/frameworks/base/core/tests/coretests/src/android/util/
DKeyUtils.java45 public static void tapMenuKey(ActivityInstrumentationTestCase test) { in tapMenuKey()
58 public static void chordMenuKey(ActivityInstrumentationTestCase test, char shortcutKey) { in chordMenuKey()
77 public static void longClick(ActivityInstrumentationTestCase test) { in longClick()
DTouchModeFlexibleAsserts.java36 public static void assertInTouchModeAfterClick(InstrumentationTestCase test, View viewToTouch) { in assertInTouchModeAfterClick()
48 public static void assertInTouchModeAfterTap(InstrumentationTestCase test, View viewToTouch) { in assertInTouchModeAfterTap()
60 …public static void assertNotInTouchModeAfterKey(InstrumentationTestCase test, int keyCode, View ch… in assertNotInTouchModeAfterKey()
/frameworks/base/test-runner/tests/src/android/test/
DTestCaseUtilTest.java47 Test test = TestCaseUtil.createTestSuite(OneTestTestCase.class); in testCreateTestForTestCase() local
52 Test test = TestCaseUtil.createTestSuite(TwoTestsInTestSuite.class); in testCreateTestForTestSuiteWithSuiteMethod() local
57 Test test = TestCaseUtil.createTestSuite(OneTestTestCaseWithSuite.class); in testCreateTestForTestCaseWithSuiteMethod() local
/frameworks/base/tools/layoutlib/bridge/tests/res/testApp/MyApplication/build/intermediates/classes/debug/com/android/layoutlib/test/myapplication/
DR.class ... R.java package com.android.layoutlib.test.myapplication public final com.android.layoutlib. ...
DR$attr.class ... R.java package com.android.layoutlib.test.myapplication public final com.android.layoutlib. ...
DR$drawable.class ... R.java package com.android.layoutlib.test.myapplication public final com.android.layoutlib. ...
DR$menu.class ... R.java package com.android.layoutlib.test.myapplication public final com.android.layoutlib. ...
DR$style.class ... R.java package com.android.layoutlib.test.myapplication public final com.android.layoutlib. ...
DR$dimen.class ... R.java package com.android.layoutlib.test.myapplication public final com.android.layoutlib. ...
DR$integer.class ... R.java package com.android.layoutlib.test.myapplication public final com.android.layoutlib. ...
DR$array.class ... R.java package com.android.layoutlib.test.myapplication public final com.android.layoutlib. ...
DR$string.class ... R.java package com.android.layoutlib.test.myapplication public final com.android.layoutlib. ...
DBuildConfig.class ... BuildConfig.java package com.android.layoutlib.test.myapplication public final com.android.layoutlib. ...
/frameworks/compile/mclinker/unittests/
DSectionDataTest.cpp39 LDSection* test = LDSection::Create("test", LDFileFormat::Null, 0, 0); in TEST_F() local
49 LDSection* test = LDSection::Create("test", LDFileFormat::Null, 0, 0); in TEST_F() local
DFragmentTest.cpp38 LDSection* test = LDSection::Create("test", LDFileFormat::Null, 0, 0); in TEST_F() local
53 LDSection* test = LDSection::Create("test", LDFileFormat::Null, 0, 0); in TEST_F() local

1234