update Client
This commit is contained in:
parent
a90628f6e7
commit
e6778b9f78
|
|
@ -14,3 +14,6 @@
|
||||||
.cxx
|
.cxx
|
||||||
local.properties
|
local.properties
|
||||||
/.idea/
|
/.idea/
|
||||||
|
|
||||||
|
|
||||||
|
.idea
|
||||||
|
|
|
||||||
|
|
@ -133,6 +133,17 @@ dependencies {
|
||||||
implementation project(":services:localstorage")
|
implementation project(":services:localstorage")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
task copyServerClientFromLocalDisc{
|
||||||
|
doLast{
|
||||||
|
println('START copyServerClientFromLocalDisc:')
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
println('END copyServerClientFromLocalDisc:')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
task uploadPersonalConfigsBundle {
|
task uploadPersonalConfigsBundle {
|
||||||
doLast {
|
doLast {
|
||||||
println('uploadPersonalConfigBundle:')
|
println('uploadPersonalConfigBundle:')
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,8 @@ package eu.csc.vehown;
|
||||||
|
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
|
import java.util.Properties;
|
||||||
|
|
||||||
import static org.junit.Assert.*;
|
import static org.junit.Assert.*;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -14,4 +16,13 @@ public class ExampleUnitTest {
|
||||||
public void addition_isCorrect() {
|
public void addition_isCorrect() {
|
||||||
assertEquals(4, 2 + 2);
|
assertEquals(4, 2 + 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testProperties(){
|
||||||
|
|
||||||
|
Properties properties = new Properties();
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
Binary file not shown.
Binary file not shown.
|
|
@ -41,6 +41,7 @@ dependencies {
|
||||||
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
|
||||||
|
|
||||||
implementation files('../../libs/log4j-1.2.17.jar')
|
implementation files('../../libs/log4j-1.2.17.jar')
|
||||||
implementation "asnrt:asnrt:$asnrt_version"
|
implementation files('../../libs/asnrt-2020.07.jar')
|
||||||
|
//implementation "asnrt:asnrt:$asnrt_version"
|
||||||
implementation "eu.csc.core:coregtdm:$coregtdm_version"
|
implementation "eu.csc.core:coregtdm:$coregtdm_version"
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue