Seb C
10/31/2021, 2:38 PMimport kotlin.test.Test
import kotlin.test.assertEquals
import Color.*
class ResistorColorTrioTest {
@Test
fun `orange orange black`() = assertEquals("33 ohms", ResistorColorTrio.text(ORANGE, ORANGE, BLACK))
object ResistorColorTrio { fun text(vararg input: Color): String {
// breakpoint here does not stop?
println("Hi")
}