Update readme with code kata and create empty instruction sets

This commit is contained in:
Gergely Hegedus 2021-04-19 21:52:29 +03:00
parent 17f645ce9d
commit 878eff1f59
7 changed files with 70 additions and 3 deletions

View file

@ -60,4 +60,14 @@ task clean(type: Delete) {
delete rootProject.buildDir
}
task unitTests(dependsOn: ["app:testDebugUnitTest", "core:test", "network:test"]){
group = 'Tests'
description = 'Run all unit tests'
}
task androidTests(dependsOn: "app:connectedAndroidTest"){
group = 'Tests'
description = 'Run all Android tests'
}
apply from: 'gradlescripts/versions.gradle'