選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

ServerStateTest.kt 374B

1234567891011121314
  1. package com.dmdirc.ktirc.model
  2. import org.junit.jupiter.api.Assertions.assertEquals
  3. import org.junit.jupiter.api.Test
  4. internal class ServerStateTest {
  5. @Test
  6. fun `IrcServerState should use the initial nickname as local nickname`() {
  7. val serverState = ServerState("acidBurn")
  8. assertEquals("acidBurn", serverState.localNickname)
  9. }
  10. }