2019-12-31 16:46:22 +00:00
|
|
|
apply plugin: 'kotlin'
|
|
|
|
|
|
|
|
dependencies {
|
2023-06-21 16:19:45 +00:00
|
|
|
compileOnly ComponentsDependencies.tools_detekt_api
|
|
|
|
implementation ComponentsDependencies.androidx_annotation
|
2019-12-31 16:46:22 +00:00
|
|
|
|
2023-06-21 16:19:45 +00:00
|
|
|
testImplementation ComponentsDependencies.tools_detekt_api
|
|
|
|
testImplementation ComponentsDependencies.tools_detekt_test
|
2022-12-11 23:22:38 +00:00
|
|
|
testImplementation FenixDependencies.junitApi
|
|
|
|
testImplementation FenixDependencies.junitParams
|
|
|
|
testRuntimeOnly FenixDependencies.junitEngine
|
2019-12-31 16:46:22 +00:00
|
|
|
}
|
|
|
|
|
2020-10-21 18:24:24 +00:00
|
|
|
test {
|
|
|
|
useJUnitPlatform {}
|
|
|
|
}
|