Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package com.simprints.feature.orchestrator.usecases.response

import com.google.common.truth.Truth.assertThat
import com.simprints.feature.externalcredential.ExternalCredentialSearchResult
import com.simprints.feature.selectsubject.SelectSubjectResult
import com.simprints.infra.orchestration.data.responses.AppConfirmationResponse
import com.simprints.infra.orchestration.data.responses.AppErrorResponse
import com.simprints.feature.externalcredential.ExternalCredentialSearchResult
import io.mockk.mockk
import org.junit.Before
import org.junit.Test
Expand All @@ -23,7 +23,7 @@ class CreateConfirmIdentityResponseUseCaseTest {
useCase(
listOf(
SelectSubjectResult(true, mockk<ExternalCredentialSearchResult.Complete>(relaxed = true)),
mockk(),
mockk(relaxed = true),
),
),
).isInstanceOf(AppConfirmationResponse::class.java)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class CreateEnrolLastBiometricResponseUseCaseTest {
useCase(
listOf(
EnrolLastBiometricResult("1234", null),
mockk(),
mockk(relaxed = true),
),
),
).isInstanceOf(AppEnrolResponse::class.java)
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
kotlin_version = "2.3.21"
kotlin_version = "2.4.0"
kotlin_coroutine_version = "1.11.0"
ksp_version = "2.3.9"
kotlin_serialization_version = "1.11.0"
Expand Down Expand Up @@ -80,7 +80,7 @@ uiAutomator_version = "2.3.0"
jacoco_version = "0.8.15"

sonar_plugin_version = "7.3.1.8318"
realm_version = "4.0.3"
realm_version = "4.0.4"
protobuf_plugin_version = "0.10.0"
deps_graph_version = "0.8.0"
tink_version = "1.21.0"
Expand Down