You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. }