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.

LoggingTest.kt 340B

123456789101112131415
  1. package com.dmdirc.ktirc.util
  2. import org.junit.jupiter.api.Assertions.assertEquals
  3. import org.junit.jupiter.api.Test
  4. internal class LoggingTest {
  5. private val log by logger()
  6. @Test
  7. fun `logger gives logger with correct class name`() {
  8. assertEquals("com.dmdirc.ktirc.util.LoggingTest", log.name)
  9. }
  10. }