parent
129031b2a7
commit
869ce95889
|
@ -1,11 +1,11 @@
|
||||||
package info.nightscout.plugins.sync.nsclientV3.extensions
|
package info.nightscout.plugins.sync.nsclientV3.extensions
|
||||||
|
|
||||||
import app.aaps.shared.tests.TestBaseWithProfile
|
import app.aaps.shared.tests.TestBaseWithProfile
|
||||||
|
import com.google.common.truth.Truth.assertThat
|
||||||
import info.nightscout.database.entities.TemporaryBasal
|
import info.nightscout.database.entities.TemporaryBasal
|
||||||
import info.nightscout.database.entities.embedments.InterfaceIDs
|
import info.nightscout.database.entities.embedments.InterfaceIDs
|
||||||
import info.nightscout.sdk.localmodel.treatment.NSTemporaryBasal
|
import info.nightscout.sdk.localmodel.treatment.NSTemporaryBasal
|
||||||
import info.nightscout.sdk.mapper.convertToRemoteAndBack
|
import info.nightscout.sdk.mapper.convertToRemoteAndBack
|
||||||
import org.junit.jupiter.api.Assertions
|
|
||||||
import org.junit.jupiter.api.Test
|
import org.junit.jupiter.api.Test
|
||||||
|
|
||||||
@Suppress("SpellCheckingInspection")
|
@Suppress("SpellCheckingInspection")
|
||||||
|
@ -29,8 +29,8 @@ internal class TemporaryBasalExtensionKtTest : TestBaseWithProfile() {
|
||||||
)
|
)
|
||||||
|
|
||||||
var temporaryBasal2 = (temporaryBasal.toNSTemporaryBasal(validProfile).convertToRemoteAndBack() as NSTemporaryBasal).toTemporaryBasal()
|
var temporaryBasal2 = (temporaryBasal.toNSTemporaryBasal(validProfile).convertToRemoteAndBack() as NSTemporaryBasal).toTemporaryBasal()
|
||||||
Assertions.assertTrue(temporaryBasal.contentEqualsTo(temporaryBasal2))
|
assertThat(temporaryBasal.contentEqualsTo(temporaryBasal2)).isTrue()
|
||||||
Assertions.assertTrue(temporaryBasal.interfaceIdsEqualsTo(temporaryBasal2))
|
assertThat(temporaryBasal.interfaceIdsEqualsTo(temporaryBasal2)).isTrue()
|
||||||
|
|
||||||
temporaryBasal = TemporaryBasal(
|
temporaryBasal = TemporaryBasal(
|
||||||
timestamp = 10000,
|
timestamp = 10000,
|
||||||
|
@ -48,7 +48,7 @@ internal class TemporaryBasalExtensionKtTest : TestBaseWithProfile() {
|
||||||
)
|
)
|
||||||
|
|
||||||
temporaryBasal2 = (temporaryBasal.toNSTemporaryBasal(validProfile).convertToRemoteAndBack() as NSTemporaryBasal).toTemporaryBasal()
|
temporaryBasal2 = (temporaryBasal.toNSTemporaryBasal(validProfile).convertToRemoteAndBack() as NSTemporaryBasal).toTemporaryBasal()
|
||||||
Assertions.assertTrue(temporaryBasal.contentEqualsTo(temporaryBasal2))
|
assertThat(temporaryBasal.contentEqualsTo(temporaryBasal2)).isTrue()
|
||||||
Assertions.assertTrue(temporaryBasal.interfaceIdsEqualsTo(temporaryBasal2))
|
assertThat(temporaryBasal.interfaceIdsEqualsTo(temporaryBasal2)).isTrue()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue