Searched refs:listOfString (Results 1 – 9 of 9) sorted by relevance
/external/dagger2/javatests/dagger/functional/builderbinds/ |
D | BuilderBindsTest.java | 40 .listOfString(Arrays.asList("x", "y", "z")); in builderBinds() 46 assertThat(component.listOfString()).containsExactly("x", "y", "z").inOrder(); in builderBinds() 57 .listOfString(ImmutableList.of()); in builderBindsNullableWithNull() 64 assertThat(component.listOfString()).isEmpty(); in builderBindsNullableWithNull() 84 .listOfString(ImmutableList.of()); in builderBindsPrimitiveNotSet() 100 .listOfString(ImmutableList.of()); in builderBindsNonNullableNotSet() 111 DaggerTestComponent.builder().count(5).l(10L).input("foo").listOfString(ImmutableList.of()); in builderBindsNullableNotSet() 117 assertThat(component.listOfString()).isEmpty(); in builderBindsNullableNotSet()
|
D | TestComponent.java | 37 List<String> listOfString(); in listOfString() method 57 Builder listOfString(List<String> listOfString); in listOfString() method
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/logic/ |
D | InferenceContextTest.java | 47 private ResolvedReferenceType listOfString; field in InferenceContextTest 56 listOfString = listOf(string); in setup() 75 …w InferenceContext(MyObjectProvider.INSTANCE).addPair(new ResolvedTypeVariable(tpE), listOfString); in placingASingleVariableTopLevel() 81 …solvedType result = new InferenceContext(MyObjectProvider.INSTANCE).addPair(listOfE, listOfString); in placingASingleVariableInside()
|
/external/connectedappssdk/tests/robotests/src/test/java/com/google/android/enterprise/connectedapps/robotests/ |
D | CrossProfileInterfaceTest.java | 49 private static final List<String> listOfString = Collections.singletonList(STRING); field in CrossProfileInterfaceTest 81 profileTestCrossProfileInterface.both().identityListOfStringMethod(listOfString); in crossProfileInterface_both_getsBothResults() 83 assertThat(results.get(currentProfileIdentifier)).isEqualTo(listOfString); in crossProfileInterface_both_getsBothResults() 84 assertThat(results.get(otherProfileIdentifier)).isEqualTo(listOfString); in crossProfileInterface_both_getsBothResults()
|
D | TypesTest.java | 88 private static final List<String> listOfString = Collections.singletonList(STRING); field in TypesTest 89 private static final List<List<String>> listOfListOfString = ImmutableList.of(listOfString); 353 senderProvider.provide(context, testProfileConnector).identityListMethod(listOfString)) in listReturnTypeAndArgument_bothWork() 354 .isEqualTo(listOfString); in listReturnTypeAndArgument_bothWork()
|
/external/guice/core/test/com/google/inject/ |
D | TypeLiteralTypeResolutionTest.java | 310 TypeLiteral<AbstractList<String>> listOfString = new TypeLiteral<AbstractList<String>>() {}; in testGetSupertype() local 313 listOfString.getSupertype(AbstractCollection.class).getType()); in testGetSupertype()
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/model/typesystem/ |
D | ReferenceTypeTest.java | 497 …ResolvedReferenceType listOfString = new ReferenceTypeImpl(list, ImmutableList.of(string), typeRes… in testGetAllAncestorsOnTypeWithSpecifiedTypeParametersForInterface() local 500 listOfString.getAllAncestors().forEach(a -> ancestors.put(a.getQualifiedName(), a)); in testGetAllAncestorsOnTypeWithSpecifiedTypeParametersForInterface()
|
/external/auto/common/src/test/java/com/google/auto/common/ |
D | MoreTypesTest.java | 477 private List<String> listOfString; field in MoreTypesTest.Unchecked
|
/external/javapoet/src/test/java/com/squareup/javapoet/ |
D | TypeSpecTest.java | 1662 TypeName listOfString = ParameterizedTypeName.get(List.class, String.class); in multilineStatementWithAnonymousClass() local 1682 .addParameter(listOfString, "list") in multilineStatementWithAnonymousClass()
|