Add unit test on ReceiptType.toRustReceiptType()
This commit is contained in:
parent
a60198a716
commit
8efdf6604b
1 changed files with 21 additions and 0 deletions
|
|
@ -0,0 +1,21 @@
|
|||
/*
|
||||
* 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.timeline
|
||||
|
||||
import com.google.common.truth.Truth.assertThat
|
||||
import io.element.android.libraries.matrix.api.timeline.ReceiptType
|
||||
import org.junit.Test
|
||||
import org.matrix.rustcomponents.sdk.ReceiptType as RustReceiptType
|
||||
|
||||
class ReceiptTypeMapperKtTest {
|
||||
@Test
|
||||
fun toRustReceiptType() {
|
||||
assertThat(ReceiptType.READ.toRustReceiptType()).isEqualTo(RustReceiptType.READ)
|
||||
assertThat(ReceiptType.READ_PRIVATE.toRustReceiptType()).isEqualTo(RustReceiptType.READ_PRIVATE)
|
||||
assertThat(ReceiptType.FULLY_READ.toRustReceiptType()).isEqualTo(RustReceiptType.FULLY_READ)
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue