Merge pull request #6043 from element-hq/renovate/metro
fix(deps): update metro to v0.10.0
This commit is contained in:
commit
9ae97048a0
26 changed files with 26 additions and 50 deletions
|
|
@ -15,6 +15,8 @@ import com.lemonappdev.konsist.api.verify.assertFalse
|
|||
import com.lemonappdev.konsist.api.verify.assertTrue
|
||||
import dev.zacsweers.metro.Assisted
|
||||
import dev.zacsweers.metro.ContributesBinding
|
||||
import dev.zacsweers.metro.ContributesIntoMap
|
||||
import dev.zacsweers.metro.ContributesIntoSet
|
||||
import dev.zacsweers.metro.Inject
|
||||
import org.junit.Test
|
||||
|
||||
|
|
@ -46,4 +48,26 @@ class KonsistDiTest {
|
|||
classDeclaration.hasAnnotationOf(Inject::class)
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
fun `class annotated with @ContributesIntoSet does not need to be annotated with @Inject anymore`() {
|
||||
Konsist
|
||||
.scopeFromProject()
|
||||
.classes()
|
||||
.withAnnotationOf(ContributesIntoSet::class)
|
||||
.assertFalse { classDeclaration ->
|
||||
classDeclaration.hasAnnotationOf(Inject::class)
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
fun `class annotated with @ContributesIntoMap does not need to be annotated with @Inject anymore`() {
|
||||
Konsist
|
||||
.scopeFromProject()
|
||||
.classes()
|
||||
.withAnnotationOf(ContributesIntoMap::class)
|
||||
.assertFalse { classDeclaration ->
|
||||
classDeclaration.hasAnnotationOf(Inject::class)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue