Add unit test on toRoomType
This commit is contained in:
parent
d13c9d9851
commit
07258052e4
1 changed files with 19 additions and 0 deletions
|
|
@ -0,0 +1,19 @@
|
||||||
|
/*
|
||||||
|
* 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.room
|
||||||
|
|
||||||
|
import io.element.android.libraries.matrix.api.room.RoomType
|
||||||
|
import org.junit.Test
|
||||||
|
|
||||||
|
class RoomTypeKtTest {
|
||||||
|
@Test
|
||||||
|
fun toRoomType() {
|
||||||
|
assert(null.toRoomType() == RoomType.Room)
|
||||||
|
assert("m.space".toRoomType() == RoomType.Space)
|
||||||
|
assert("m.other".toRoomType() == RoomType.Other("m.other"))
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue