Searched refs:assertThatModuleMethod (Results 1 – 6 of 6) sorted by relevance
20 import static dagger.internal.codegen.DaggerModuleMethodSubject.Factory.assertThatModuleMethod;55 assertThatModuleMethod("@Multibinds abstract void voidMethod();") in voidMethod()62 assertThatModuleMethod("@Multibinds abstract int primitive();") in primitiveMethod()69 assertThatModuleMethod("@Multibinds abstract Map rawMap();") in rawMap()76 assertThatModuleMethod("@Multibinds abstract Map<String, ?> wildcardMap();") in wildcardMapValue()83 assertThatModuleMethod("@Multibinds abstract Map<String, ? extends Number> wildcardMap();") in wildcardMapValueWithBounds()90 assertThatModuleMethod("@Multibinds abstract Map<?, String> wildcardMap();") in wildcardMapKey()97 assertThatModuleMethod("@Multibinds abstract Map<? extends Number, String> wildcardMap();") in wildcardMapKeyWithBounds()104 assertThatModuleMethod("@Multibinds abstract Map<String, Provider<Object>> providerMap();") in providerMap()111 assertThatModuleMethod("@Multibinds abstract Map<String, Producer<Object>> producerMap();") in producerMap()[all …]
20 import static dagger.internal.codegen.DaggerModuleMethodSubject.Factory.assertThatModuleMethod;50 assertThatModuleMethod("@Provides abstract String abstractMethod();") in providesMethodAbstract()55 assertThatModuleMethod("@Provides private String privateMethod() { return null; }") in providesMethodPrivate()60 assertThatModuleMethod("@Provides void voidMethod() {}") in providesMethodReturnVoid()66 assertThatModuleMethod("@Provides Provider<String> provideProvider() {}") in providesMethodReturnsProvider()72 assertThatModuleMethod("@Provides Lazy<String> provideLazy() {}") in providesMethodReturnsLazy()78 assertThatModuleMethod("@Provides MembersInjector<String> provideMembersInjector() {}") in providesMethodReturnsMembersInjector()84 assertThatModuleMethod("@Provides Producer<String> provideProducer() {}") in providesMethodReturnsProducer()90 assertThatModuleMethod("@Provides Produced<String> provideProduced() {}") in providesMethodReturnsProduced()95 assertThatModuleMethod("@Provides <T> String typeParameter() { return null; }") in providesMethodWithTypeParameter()[all …]
20 import static dagger.internal.codegen.DaggerModuleMethodSubject.Factory.assertThatModuleMethod;181 return assertThatModuleMethod(method).withDeclaration(moduleDeclaration); in assertThatMethod()
20 import static dagger.internal.codegen.DaggerModuleMethodSubject.Factory.assertThatModuleMethod;346 return assertThatModuleMethod(method).withDeclaration(moduleDeclaration); in assertThatMethod()
19 import static dagger.internal.codegen.DaggerModuleMethodSubject.Factory.assertThatModuleMethod;349 assertThatModuleMethod( in tooManyAnnotations()
41 static DaggerModuleMethodSubject assertThatModuleMethod(String method) { in assertThatModuleMethod() method in DaggerModuleMethodSubject.Factory