hmm, ok, if i change the test to use the component...
# dagger
j
hmm, ok, if i change the test to use the component to expose a bean instead, it works. is named binding of a component member just not a supported thing?:
Copy code
@Component(modules = [DefaultApplicationModule::class])
interface DefaultApplicationModuleComponent {
    val thing: Thing
}

class Thing @Inject constructor(
    @Named(APPLICATION_RESOURCES_BIND_NAME)
    val resources: Set<@JvmSuppressWildcards Any>
)
class DefaultApplicationModuleTest {
    lateinit var component: DefaultApplicationModuleComponent
    @BeforeClass
    fun setUp() {
        component = DaggerDefaultApplicationModuleComponent.create()
    }
}