HomeSort by relevance Sort by last modified time
    Searched refs:InstrumentationTest (Results 1 - 25 of 28) sorted by null

1 2

  /frameworks/base/test-runner/tests/src/android/test/suitebuilder/examples/instrumentation/
InstrumentationTest.java 21 public class InstrumentationTest extends InstrumentationTestCase {
  /frameworks/base/core/tests/coretests/src/android/app/
InstrumentationTest.java 22 public class InstrumentationTest extends InstrumentationTestCase {
  /tools/tradefederation/core/tests/src/com/android/tradefed/testtype/
InstrumentationSerialTestTest.java 62 final InstrumentationTest mockITest =
63 new InstrumentationTest() {
73 // mock out InstrumentationTest that will be used to create InstrumentationSerialTest
80 InstrumentationTest createInstrumentationTest(
81 InstrumentationTest instrumentationTest) throws ConfigurationException {
110 final InstrumentationTest mockITest = new InstrumentationTest() {
118 // mock out InstrumentationTest that will be used to create InstrumentationSerialTest
123 InstrumentationTest createInstrumentationTest(InstrumentationTest instrumentationTest
    [all...]
MockInstrumentationTest.java 22 * Mock for InstrumentationTest.
24 public class MockInstrumentationTest extends InstrumentationTest {
InstrumentationFileTestTest.java 53 private InstrumentationTest mMockITest;
70 // mock out InstrumentationTest that will be used to create InstrumentationFileTest
71 mMockITest = new InstrumentationTest() {
106 InstrumentationTest createInstrumentationTest() {
185 InstrumentationTest createInstrumentationTest() {
287 InstrumentationTest createInstrumentationTest() {
361 InstrumentationTest createInstrumentationTest() {
467 InstrumentationTest createInstrumentationTest() {
InstrumentationTestTest.java 41 * Unit tests for {@link InstrumentationTest}
54 /** The {@link InstrumentationTest} under test, with all dependencies mocked out */
55 private InstrumentationTest mInstrumentationTest;
121 mInstrumentationTest = new InstrumentationTest() {
138 mMockRemoteRunner.addInstrumentationArg(InstrumentationTest.TEST_TIMEOUT_INST_ARGS_KEY,
162 mInstrumentationTest = new InstrumentationTest();
367 mMockRemoteRunner.addInstrumentationArg(InstrumentationTest.TEST_TIMEOUT_INST_ARGS_KEY,
501 * Test for {@link InstrumentationTest#collectTestsAndRetry(IRemoteAndroidTestRunner,
530 * Test for {@link InstrumentationTest#collectTestsAndRetry(IRemoteAndroidTestRunner,
562 new InstrumentationTest() {
    [all...]
InstrumentationTestFuncTest.java 38 * Functional tests for {@link InstrumentationTest}.
47 /** The {@link InstrumentationTest} under test */
48 private InstrumentationTest mInstrumentationTest;
56 mInstrumentationTest = new InstrumentationTest();
314 InstrumentationTest uiTest = new InstrumentationTest();
InstalledInstrumentationsTestTest.java 176 InstrumentationTest createInstrumentationTest() {
AndroidJUnitTestTest.java 82 mMockRemoteRunner.addInstrumentationArg(InstrumentationTest.TEST_TIMEOUT_INST_ARGS_KEY,
  /tools/tradefederation/core/tests/src/com/android/tradefed/targetprep/
InstrumentationPreparerTest.java 26 import com.android.tradefed.testtype.InstrumentationTest;
42 private InstrumentationTest mMockITest;
60 mMockITest = new InstrumentationTest() {
71 InstrumentationTest createInstrumentationTest() {
86 mMockITest = new InstrumentationTest() {
98 InstrumentationTest createInstrumentationTest() {
  /tools/tradefederation/core/src/com/android/tradefed/testtype/
InstrumentationSerialTest.java 42 private InstrumentationTest mInstrumentationTest = null;
47 * @param instrumentationTest {@link InstrumentationTest} used to configure this class
51 InstrumentationSerialTest(InstrumentationTest instrumentationTest,
53 // reuse the InstrumentationTest class to perform actual test run
54 mInstrumentationTest = createInstrumentationTest(instrumentationTest);
60 * Create and initialize new instance of {@link InstrumentationTest}. Exposed for unit testing.
62 * @param instrumentationTest {@link InstrumentationTest} used to configure this clas
    [all...]
InstrumentationFileTest.java 50 private InstrumentationTest mInstrumentationTest = null;
66 * @param instrumentationTest {@link InstrumentationTest} used to configure this class
70 InstrumentationFileTest(InstrumentationTest instrumentationTest,
73 // reuse the InstrumentationTest class to perform actual test run
75 // copy all options from the original InstrumentationTest
76 OptionCopier.copyOptions(instrumentationTest, mInstrumentationTest);
77 mInstrumentationTest.setDevice(instrumentationTest.getDevice());
78 mInstrumentationTest.setForceAbi(instrumentationTest.getForceAbi())
    [all...]
InstalledInstrumentationsTest.java 161 private List<InstrumentationTest> mTests = null;
194 * Gets the list of {@link InstrumentationTest}s contained within.
198 List<InstrumentationTest> getTests() {
256 mTests = new LinkedList<InstrumentationTest>();
268 InstrumentationTest t = createInstrumentationTest();
298 InstrumentationTest test = mTests.get(0);
342 * Creates the {@link InstrumentationTest} to use. Exposed for unit testing.
344 InstrumentationTest createInstrumentationTest() {
347 InstrumentationTest test = new InstrumentationTest();
    [all...]
CodeCoverageTest.java 42 public class CodeCoverageTest extends InstrumentationTest {
AndroidJUnitTest.java 42 public class AndroidJUnitTest extends InstrumentationTest implements IRuntimeHintProvider,
  /tools/tradefederation/core/src/com/android/tradefed/testtype/testdefs/
XmlDefsTest.java 30 import com.android.tradefed.testtype.InstrumentationTest;
118 private List<InstrumentationTest> mTests = null;
176 * Gets the list of parsed {@link InstrumentationTest}s contained within.
180 List<InstrumentationTest> getTests() {
218 mTests = new LinkedList<InstrumentationTest>();
222 InstrumentationTest test = createInstrumentationTest();
278 InstrumentationTest test = mTests.get(0);
357 * Creates the {@link InstrumentationTest} to use. Exposed for unit testing.
359 InstrumentationTest createInstrumentationTest() {
360 return new InstrumentationTest();
    [all...]
  /art/runtime/
instrumentation_test.cc 147 class InstrumentationTest : public CommonRuntimeTest {
394 TEST_F(InstrumentationTest, NoInstrumentation) {
418 TEST_F(InstrumentationTest, MethodEntryEvent) {
422 TEST_F(InstrumentationTest, MethodExitEvent) {
426 TEST_F(InstrumentationTest, MethodUnwindEvent) {
430 TEST_F(InstrumentationTest, DexPcMovedEvent) {
434 TEST_F(InstrumentationTest, FieldReadEvent) {
438 TEST_F(InstrumentationTest, FieldWriteEvent) {
442 TEST_F(InstrumentationTest, ExceptionCaughtEvent) {
446 TEST_F(InstrumentationTest, BranchEvent)
    [all...]
  /tools/tradefederation/core/prod-tests/src/com/android/continuous/
SmokeTest.java 29 import com.android.tradefed.testtype.InstrumentationTest;
37 * Simply {@link InstrumentationTest} with extra reporting. Should be re-integrated with
38 * {@link InstrumentationTest} after it's clear that it works as expected.
41 public class SmokeTest extends InstrumentationTest {
  /tools/tradefederation/core/prod-tests/src/com/android/sensor/tests/
SingleSensorTests.java 24 import com.android.tradefed.testtype.InstrumentationTest;
35 public class SingleSensorTests extends InstrumentationTest {
  /tools/tradefederation/core/prod-tests/src/com/android/app/tests/
AppLaunchTest.java 30 import com.android.tradefed.testtype.InstrumentationTest;
129 InstrumentationTest i = new InstrumentationTest();
  /frameworks/base/test-runner/tests/src/android/test/suitebuilder/
InstrumentationTestSuiteBuilderTest.java 21 import android.test.suitebuilder.examples.instrumentation.InstrumentationTest;
44 instrumentationTestSuiteBuilder.includePackages(packageFor(InstrumentationTest.class));
49 assertTrue(recorder.saw("InstrumentationTest.testInstrumentation"));
UnitTestSuiteBuilderTest.java 19 import android.test.suitebuilder.examples.instrumentation.InstrumentationTest;
42 unitTestSuiteBuilder.includePackages(packageFor(InstrumentationTest.class));
49 assertFalse(recorder.saw("InstrumentationTest.testInstrumentation"));
  /tools/tradefederation/core/src/com/android/tradefed/targetprep/
InstrumentationPreparer.java 31 import com.android.tradefed.testtype.InstrumentationTest;
122 final InstrumentationTest test = createInstrumentationTest();
169 InstrumentationTest createInstrumentationTest() {
170 return new InstrumentationTest();
  /tools/tradefederation/core/tests/src/com/android/tradefed/testtype/testdefs/
XmlDefsTestTest.java 21 import com.android.tradefed.testtype.InstrumentationTest;
63 InstrumentationTest createInstrumentationTest() {
126 // verify InstrumentationTest.run was called
134 // verify InstrumentationTest.run was called again, with same listener + different device
  /tools/tradefederation/core/prod-tests/src/com/android/media/tests/
CameraTestBase.java 35 import com.android.tradefed.testtype.InstrumentationTest;
183 InstrumentationTest instr = new InstrumentationTest();

Completed in 1415 milliseconds

1 2