Home
last modified time | relevance | path

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

/tools/tradefederation/core/tests/src/com/android/tradefed/util/
DListInstrumentationParserTest.java80 InstrumentationTarget target2 = new InstrumentationTarget( in testSimpleParse() local
86 List<InstrumentationTarget> expectedTargets = Lists.newArrayList(target1, target3, target2); in testSimpleParse()
93 assertTrue("Shardable targets not treated as shardable", target2.isShardable()); in testSimpleParse()
/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/
DCodeCoverageTestBaseTest.java478 InstrumentationTarget target2 = new InstrumentationTarget(PACKAGE_NAME2, RUNNER_NAME2, "");
483 doReturn(ImmutableList.of(target1, target2, target3, target4))
491 assertThat(targets).containsExactly(target1, target2, target3, target4);
499 InstrumentationTarget target2 = new InstrumentationTarget(PACKAGE_NAME2, RUNNER_NAME2, "");
504 doReturn(ImmutableList.of(target1, target2, target3, target4))
521 InstrumentationTarget target2 = new InstrumentationTarget(PACKAGE_NAME2, RUNNER_NAME2, "");
526 doReturn(ImmutableList.of(target1, target2, target3, target4))
543 InstrumentationTarget target2 = new InstrumentationTarget(PACKAGE_NAME2, RUNNER_NAME2, "");
548 doReturn(ImmutableList.of(target1, target2, target3, target4))
557 assertThat(targets).containsExactly(target1, target2);
[all …]
DInstrumentationTestTest.java115 InstrumentationTarget target2 = new InstrumentationTarget("package2", "runner2", "target2"); in setUp() local
116 doReturn(ImmutableList.of(target1, target2)) in setUp()