HomeSort by relevance Sort by last modified time
    Searched full:instrumentation (Results 51 - 75 of 1688) sorted by null

1 23 4 5 6 7 8 91011>>

  /frameworks/base/media/tests/
README.txt 2 Uses instrumentation and so can be run with runtest.
  /packages/apps/Calculator/tests/
AndroidManifest.xml 24 <instrumentation android:name="CalculatorLaunchPerformance"
27 </instrumentation>
29 <instrumentation android:name="android.test.InstrumentationTestRunner"
32 </instrumentation>
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
messages.properties 25 AndroidJUnitLaunchAction_LaunchInstr_2s=Launching instrumentation %1$s on %2$s
26 AndroidJUnitDelegate_NoRunnerConfigMsg_s=Warning: No instrumentation runner found for the launch, using %1$s
27 AndroidJUnitDelegate_NoRunnerConsoleMsg_4s=%1$s does not specify a %2$s instrumentation or does not declare uses-library %3$s in its %4$s
29 AndroidJUnitDelegate_NoTargetMsg_3s=%1$s is not configured correctly for running tests:\nA targetPackage attribute for instrumentation %2$s in its %3$s could not be found\!
30 AndroidJUnitTab_LoaderLabel=Instrumentation runner:
32 AndroidJUnitTab_NoRunnerError=Instrumentation runner not specified
36 InstrValidator_WrongRunnerTypeMsg_s=The instrumentation runner must be of type %1$s
  /frameworks/base/docs/html/guide/topics/manifest/
instrumentation-element.jd 1 page.title=&lt;instrumentation&gt;
8 <dd><pre class="stx">&lt;instrumentation android:<a href="#ftest">functionalTest</a>=["true" | "false"]
19 <dd>Declares an {@link android.app.Instrumentation} class that enables you
20 to monitor an application's interaction with the system. The Instrumentation
26 <dd>Whether or not the Instrumentation class should run as a functional test
31 <dd>Whether or not the Instrumentation object will turn profiling on and
38 <dd>An icon that represents the Instrumentation class. This attribute must
42 <dd>A user-readable label for the Instrumentation class. The label can
46 <dd>The name of the {@link android.app.Instrumentation} subclass.
57 <dd>The application that the Instrumentation object will run against
    [all...]
  /frameworks/testing/androidtestlib/src/com/android/test/
InjectInstrumentation.java 18 import android.app.Instrumentation;
31 * Use this to inject an {@link Instrumentation} into your JUnit4-style test.
33 * To use, just add the correct annotation to an {@link Instrumentation} field like this:
35 * &#64;InjectInstrumentation public Instrumentation mMyInstrumentation;
38 * The test runner will set the value of this field with the {@link Instrumentation} after
  /packages/apps/Camera2/tests/
AndroidManifest.xml 25 <instrumentation android:name="android.test.InstrumentationTestRunner"
29 <instrumentation android:name="com.android.camera.CameraTestRunner"
33 <instrumentation android:name="com.android.camera.exif.ExifTestRunner"
37 <instrumentation android:name="com.android.camera.jpegstream.JpegStreamTestRunner"
41 <instrumentation android:name="com.android.camera.stress.CameraStressTestRunner"
  /cts/tests/tests/mediastress/src/android/mediastress/cts/
NativeMediaTest.java 18 import android.app.Instrumentation;
63 final Instrumentation instrumentation = getInstrumentation(); local
67 instrumentation.callActivityOnPause(activity);
68 instrumentation.waitForIdleSync();
70 instrumentation.callActivityOnResume(activity);
  /external/chromium_org/build/android/pylib/instrumentation/
setup.py 5 """Generates test runner factory and tests for instrumentation tests."""
34 logging.error('No instrumentation tests to run with current args.')
  /frameworks/testing/androidtestlib/tests/src/com/android/test/
InstrumentationJUnit4Fixture.java 18 import android.app.Instrumentation;
29 public Instrumentation mInstrumentation;
InstrumentationJUnit4Test.java 18 import android.app.Instrumentation;
31 public Instrumentation mInstrumentation;
  /development/samples/Vault/tests/
AndroidManifest.xml 9 <instrumentation
  /frameworks/base/core/tests/overlaytests/OverlayTest/
AndroidManifest.xml 7 <instrumentation android:name="android.test.InstrumentationTestRunner"
  /frameworks/base/packages/DocumentsUI/tests/
AndroidManifest.xml 9 <instrumentation android:name="android.test.InstrumentationTestRunner"
  /packages/apps/Browser/tests/
AndroidManifest.xml 29 This declares that this app uses the instrumentation test runner targeting
33 <instrumentation android:name="android.test.InstrumentationTestRunner"
37 <instrumentation android:name="com.android.browser.BrowserLaunchPerformance"
40 </instrumentation>
  /packages/apps/Mms/tests/
AndroidManifest.xml 29 This declares that this app uses the instrumentation test runner targeting
33 <instrumentation android:name="android.test.InstrumentationTestRunner"
37 <instrumentation android:name="com.android.mms.MmsLaunchPerformance"
41 <instrumentation android:name="com.android.mms.SmsTestRunner"
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/templates/
AndroidManifest.template 7 TEST-INSTRUMENTATION
  /cts/libs/wrappedgtest/src/
WrappedGTestActivity.java 20 import android.app.Instrumentation;
27 public void setInstrumentation(WrappedGTestInstrumentation instrumentation) {
28 mInstrumentation = instrumentation;
  /external/objenesis/tck-android/
AndroidManifest.xml 20 Describes an Android application with a single Instrumentation,
39 <instrumentation
42 </instrumentation>
  /frameworks/base/core/java/android/app/
IUiAutomationConnection.aidl 26 * on behalf of an instrumentation that it runs. These operations require
27 * special permissions which the shell user has but the instrumentation does
29 * instrumentation is needed for running UiTestCases.
  /frameworks/base/test-runner/src/android/test/
AndroidTestRunner.java 19 import android.app.Instrumentation;
45 private Instrumentation mInstrumentation;
207 Test test, Instrumentation instrumentation) {
209 ((InstrumentationTestCase) test).injectInstrumentation(instrumentation);
220 public void setInstrumentation(Instrumentation instrumentation) {
221 mInstrumentation = instrumentation;
226 * use {@link #setInstrumentation(android.app.Instrumentation)} instead.
229 public void setInstrumentaiton(Instrumentation instrumentation)
    [all...]
LaunchPerformanceBase.java 19 import android.app.Instrumentation;
32 * Base class for all launch performance Instrumentation classes.
36 public class LaunchPerformanceBase extends Instrumentation {
  /packages/apps/Gallery/tests/
AndroidManifest.xml 24 <instrumentation android:name="CameraLaunchPerformance"
27 </instrumentation>
29 <instrumentation android:name="android.test.InstrumentationTestRunner"
  /cts/tests/tests/text/src/android/text/style/cts/
URLSpanTest.java 23 import android.app.Instrumentation;
24 import android.app.Instrumentation.ActivityMonitor;
67 Instrumentation instrumentation = getInstrumentation(); local
68 ActivityMonitor am = instrumentation.addMonitor(MockURLSpanTestActivity.class.getName(),
  /development/samples/Alarm/tests/
AndroidManifest.xml 46 Declares the instrumentation for this application. The instrumentation class is
48 android.app.Instrumentation. The application that is run by the instrumentation object is
51 <instrumentation
  /development/samples/ApiDemos/src/com/example/android/apis/app/
ContactsFilterInstrumentation.java 20 import android.app.Instrumentation;
27 * This is an example implementation of the {@link android.app.Instrumentation}
29 * instrumentation implementation here is loaded into the application's
32 public class ContactsFilterInstrumentation extends Instrumentation {
37 // When this instrumentation is created, we simply want to start

Completed in 1732 milliseconds

1 23 4 5 6 7 8 91011>>