Test: ```import kotlin.test.Test import kotlin.te...
# getting-started
s
Test:
Copy code
import kotlin.test.Test
import kotlin.test.assertEquals
import Color.*

class ResistorColorTrioTest {

    @Test
    fun `orange orange black`() = assertEquals("33 ohms", ResistorColorTrio.text(ORANGE, ORANGE, BLACK))
Copy code
object ResistorColorTrio { fun text(vararg input: Color): String {

  // breakpoint here does not stop?
  println("Hi")
}