Home
last modified time | relevance | path

Searched refs:target1 (Results 1 – 3 of 3) sorted by relevance

/tools/tradefederation/core/tests/src/com/android/tradefed/util/
DListInstrumentationParserTest.java78 InstrumentationTarget target1 = new InstrumentationTarget( in testSimpleParse() local
86 List<InstrumentationTarget> expectedTargets = Lists.newArrayList(target1, target3, target2); in testSimpleParse()
92 assertFalse("Nonshardable targets treated as shardable", target1.isShardable()); in testSimpleParse()
/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/
DCodeCoverageTestBaseTest.java477 InstrumentationTarget target1 = new InstrumentationTarget(PACKAGE_NAME1, RUNNER_NAME1, "");
483 doReturn(ImmutableList.of(target1, target2, target3, target4))
491 assertThat(targets).containsExactly(target1, target2, target3, target4);
498 InstrumentationTarget target1 = new InstrumentationTarget(PACKAGE_NAME1, RUNNER_NAME1, "");
504 doReturn(ImmutableList.of(target1, target2, target3, target4))
513 assertThat(targets).containsExactly(target1);
520 InstrumentationTarget target1 = new InstrumentationTarget(PACKAGE_NAME1, RUNNER_NAME1, "");
526 doReturn(ImmutableList.of(target1, target2, target3, target4))
542 InstrumentationTarget target1 = new InstrumentationTarget(PACKAGE_NAME1, RUNNER_NAME1, "");
548 doReturn(ImmutableList.of(target1, target2, target3, target4))
[all …]
DInstrumentationTestTest.java113 InstrumentationTarget target1 = in setUp() local
116 doReturn(ImmutableList.of(target1, target2)) in setUp()