feat(join by alias) : add tests

This commit is contained in:
ganfra 2025-02-25 15:31:05 +01:00
parent c220fb085a
commit 14082bcd5b
5 changed files with 259 additions and 1 deletions

View file

@ -29,8 +29,9 @@ open class JoinRoomByAddressStateProvider : PreviewParameterProvider<JoinRoomByA
fun aJoinRoomByAddressState(
address: String = "",
addressState: RoomAddressState = RoomAddressState.Unknown,
eventSink: (JoinRoomByAddressEvents) -> Unit = {},
) = JoinRoomByAddressState(
address = address,
addressState = addressState,
eventSink = {}
eventSink = eventSink
)