Searched defs:test (Results 1 - 25 of 135) sorted by relevance

123456

/frameworks/base/test-runner/src/android/test/
H A DNoExecTestResult.java16 package android.test;
22 * A benign test result that does no actually test execution, just runs
30 * Override parent to just inform listeners of test,
31 * and skip test execution.
34 protected void run(final TestCase test) { argument
35 startTest(test);
36 endTest(test);
H A DAssertionFailedError.java17 package android.test;
H A DTestSuiteProvider.java17 package android.test;
22 * Implementors will know how to get a test suite.
H A DTimedTest.java17 package android.test;
23 * This annotation can be used on an {@link junit.framework.TestCase}'s test methods. When the
24 * annotation is present, the test method is timed and the results written through instrumentation
25 * output. It can also be used on the class itself, which is equivalent to tagging all test methods
H A DTestBrowserView.java17 package android.test;
H A DDatabaseTestUtils.java17 package android.test;
H A DInstrumentationUtils.java17 package android.test;
H A DLaunchPerformanceBase.java17 package android.test;
H A DPackageInfoSources.java17 package android.test;
H A DPerformanceCollectorTestCase.java17 package android.test;
H A DPerformanceTestBase.java17 package android.test;
H A DServiceLocator.java17 package android.test;
H A DSimpleCache.java17 package android.test;
H A DTestCase.java17 package android.test;
23 * More complex interface for test cases.
25 * <p>Just implementing Runnable is enough for many test cases. If you
27 * especially if you need to share it between different test cases, or your
28 * teardown code must execute regardless of whether your test passed.
30 * <p>See the android.test package documentation (click the more... link)
/frameworks/base/core/java/android/test/
H A DFlakyTest.java17 package android.test;
25 * This annotation can be used on an {@link android.test.InstrumentationTestCase}'s
26 * test methods. When the annotation is present, the test method is re-executed if
27 * the test fails. The total number of executions is specified by the tolerance and
34 * Indicates how many times a test can run and fail before being reported
35 * as a failed test. If the tolerance factor is less than 1, the test runs
H A DUiThreadTest.java17 package android.test;
25 * This annotation can be used on an {@link InstrumentationTestCase}'s test methods.
26 * When the annotation is present, the test method is executed on the application's
/frameworks/base/tests/framework-tests/src/android/test/
H A DFrameworkTests.java17 package android.test;
27 * classes; doing so is not possible when the test classes are loaded in an
/frameworks/base/tools/localize/
H A Dtest.cpp12 test() function
/frameworks/base/core/java/android/test/suitebuilder/annotation/
H A DLargeTest.java17 package android.test.suitebuilder.annotation;
25 * Marks a test that should run as part of the large tests.
H A DMediumTest.java17 package android.test.suitebuilder.annotation;
25 * Marks a test that should run as part of the medium tests.
H A DSmallTest.java17 package android.test.suitebuilder.annotation;
25 * Marks a test that should run as part of the small tests.
H A DSmoke.java17 package android.test.suitebuilder.annotation;
25 * Marks a test that should run as part of the smoke tests.
26 * The <code>android.test.suitebuilder.SmokeTestSuiteBuilder</code>
29 * @see android.test.suitebuilder.SmokeTestSuiteBuilder
H A DSuppress.java17 package android.test.suitebuilder.annotation;
25 * Use this annotation on test classes or test methods that should not be included in a test
27 * the annotation appears only on a test method then only that method will be excluded.
/frameworks/base/test-runner/tests/src/android/test/
H A DTestBrowserTests.java4 package android.test;
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/
H A DSmokeTestSuiteBuilderTest.java17 package android.test.suitebuilder;
32 assertEquals("Unexpected test name", "testSmoke", testCaseNames.get(0));

Completed in 182 milliseconds

123456