parent
1466092a59
commit
214dae1b24
1 changed files with 3 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
||||||
package app.aaps.plugins.automation.elements
|
package app.aaps.plugins.automation.elements
|
||||||
|
|
||||||
import app.aaps.plugins.automation.triggers.TriggerTestBase
|
import app.aaps.plugins.automation.triggers.TriggerTestBase
|
||||||
import org.junit.jupiter.api.Assertions
|
import com.google.common.truth.Truth.assertThat
|
||||||
import org.junit.jupiter.api.Test
|
import org.junit.jupiter.api.Test
|
||||||
|
|
||||||
class InputStringTest : TriggerTestBase() {
|
class InputStringTest : TriggerTestBase() {
|
||||||
|
@ -9,6 +9,6 @@ class InputStringTest : TriggerTestBase() {
|
||||||
@Test fun setValueTest() {
|
@Test fun setValueTest() {
|
||||||
val i = InputString()
|
val i = InputString()
|
||||||
i.value = "asd"
|
i.value = "asd"
|
||||||
Assertions.assertEquals("asd", i.value)
|
assertThat(i.value).isEqualTo("asd")
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue