Add unit test on DefaultUserServerResolver
This commit is contained in:
parent
b5af8387b7
commit
31fe8dfb59
1 changed files with 28 additions and 0 deletions
|
|
@ -0,0 +1,28 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2024 New Vector Ltd.
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: AGPL-3.0-only
|
||||||
|
* Please see LICENSE in the repository root for full details.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package io.element.android.libraries.matrix.impl.server
|
||||||
|
|
||||||
|
import com.google.common.truth.Truth.assertThat
|
||||||
|
import io.element.android.libraries.matrix.test.FakeMatrixClient
|
||||||
|
import org.junit.Test
|
||||||
|
|
||||||
|
class DefaultUserServerResolverTest {
|
||||||
|
@Test
|
||||||
|
fun resolve() {
|
||||||
|
// Given
|
||||||
|
val userServerResolver = DefaultUserServerResolver(FakeMatrixClient(
|
||||||
|
userIdServerNameLambda = { "dummy.org" }
|
||||||
|
))
|
||||||
|
|
||||||
|
// When
|
||||||
|
val result = userServerResolver.resolve()
|
||||||
|
|
||||||
|
// Then
|
||||||
|
assertThat(result).isEqualTo("dummy.org")
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue