Add test and equality check dependencies.

This commit is contained in:
Isira Seneviratne 2020-03-22 09:07:50 +05:30
parent ca9cb58623
commit 36587bbf9b
1 changed files with 11 additions and 0 deletions

View File

@ -73,6 +73,17 @@ android {
}
}
ext.powermock_version = '2.0.5'
ext.lombok_version = '1.18.12'
dependencies {
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'org.apache.commons:commons-lang3:3.9'
testImplementation 'junit:junit:4.13'
testImplementation "org.powermock:powermock-module-junit4:$powermock_version"
testImplementation "org.powermock:powermock-api-mockito2:$powermock_version"
// The line below is needed for access to the Lombok annotations.
compileOnly "org.projectlombok:lombok:$lombok_version"
annotationProcessor "org.projectlombok:lombok:$lombok_version"
}