Sha256: c9fff1eb43371bf2e470784fa6828aed24d2cb6b13d5770d72a804a7bcedd445
Contents?: true
Size: 965 Bytes
Versions: 129
Compression:
Stored size: 965 Bytes
Contents
import org.junit.Test import org.junit.Ignore import kotlin.test.assertEquals class RnaTranscriptionTest { /* In Kotlin functions can be declared at top level in a file, meaning you do not need to create a class to hold a function, like languages such as Java, C# or Scala. http://kotlinlang.org/docs/reference/functions.html#function-scope */ @Test fun cytosineComplementIsGuanine() { assertEquals("G", transcribeToRna("C")) } @Ignore @Test fun guanineComplementIsCytosine() { assertEquals("C", transcribeToRna("G")) } @Ignore @Test fun thymineComplementIsAdenine() { assertEquals("A", transcribeToRna("T")) } @Ignore @Test fun adenineComplementIsUracil() { assertEquals("U", transcribeToRna("A")) } @Ignore @Test fun rnaTranscription() { assertEquals("UGCACCAGAAUU", transcribeToRna("ACGTGGTCTTAA")) } }
Version data entries
129 entries across 129 versions & 1 rubygems