parent
94a72c1cd0
commit
81514c984b
1 changed files with 3 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
||||||
package info.nightscout.androidaps.plugins.pump.medtronic.comm.history.pump
|
package info.nightscout.androidaps.plugins.pump.medtronic.comm.history.pump
|
||||||
|
|
||||||
import info.nightscout.androidaps.plugins.pump.medtronic.MedtronicTestBase
|
import info.nightscout.androidaps.plugins.pump.medtronic.MedtronicTestBase
|
||||||
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
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -16,6 +16,6 @@ class PumpHistoryEntryUTest : MedtronicTestBase() {
|
||||||
val queryObject = 20191009000000L
|
val queryObject = 20191009000000L
|
||||||
val phe = PumpHistoryEntry()
|
val phe = PumpHistoryEntry()
|
||||||
phe.atechDateTime = dateObject
|
phe.atechDateTime = dateObject
|
||||||
Assertions.assertTrue(phe.isAfter(queryObject))
|
assertThat(phe.isAfter(queryObject)).isTrue()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue