Sha256: 608e329db629f8f64199e1398e0f376a8a41652956cc372e74269830ba1835a9

Contents?: true

Size: 1.89 KB

Versions: 126

Compression:

Stored size: 1.89 KB

Contents

import org.junit.Ignore
import org.junit.Test
import kotlin.test.assertEquals

class RotationalCipherTest {

    @Test
    fun testRotateLowercaseABy0() {
        val cipher = RotationalCipher(0)
        assertEquals("a", cipher.encode("a"))
    }

    @Ignore
    @Test
    fun testRotateLowercaseABy1NoWrapAround() {
        val cipher = RotationalCipher(1)
        assertEquals("b", cipher.encode("a"))
    }

    @Ignore
    @Test
    fun testRotateLowercaseABy26SingleWrapAround() {
        val cipher = RotationalCipher(26)
        assertEquals("a", cipher.encode("a"))
    }

    @Ignore
    @Test
    fun testRotateLowercaseMBy13NoWrapAround() {
        val cipher = RotationalCipher(13)
        assertEquals("z", cipher.encode("m"))
    }

    @Ignore
    @Test
    fun testRotateLowercaseNBy1SingleWrapAround() {
        val cipher = RotationalCipher(13)
        assertEquals("a", cipher.encode("n"))
    }

    @Ignore
    @Test
    fun testRotateCapitalLettersNoWrapAround() {
        val cipher = RotationalCipher(5)
        assertEquals("TRL", cipher.encode("OMG"))
    }

    @Ignore
    @Test
    fun testSpacesAreUnalteredByRotation() {
        val cipher = RotationalCipher(5)
        assertEquals("T R L", cipher.encode("O M G"))
    }

    @Ignore
    @Test
    fun testNumbersAreUnalteredByRotation() {
        val cipher = RotationalCipher(4)
        assertEquals("Xiwxmrk 1 2 3 xiwxmrk", cipher.encode("Testing 1 2 3 testing"))
    }

    @Ignore
    @Test
    fun testPunctuationIsUnalteredByRotation() {
        val cipher = RotationalCipher(21)
        assertEquals("Gzo'n zvo, Bmviyhv!", cipher.encode("Let's eat, Grandma!"))
    }

    @Ignore
    @Test
    fun testAllLettersRotateCorrectly() {
        val cipher = RotationalCipher(13)
        assertEquals(
                "Gur dhvpx oebja sbk whzcf bire gur ynml qbt.",
                cipher.encode("The quick brown fox jumps over the lazy dog."))
    }

}

Version data entries

126 entries across 126 versions & 1 rubygems

Version Path
trackler-2.2.1.159 tracks/kotlin/exercises/rotational-cipher/src/test/kotlin/RotationalCipherTest.kt
trackler-2.2.1.158 tracks/kotlin/exercises/rotational-cipher/src/test/kotlin/RotationalCipherTest.kt
trackler-2.2.1.157 tracks/kotlin/exercises/rotational-cipher/src/test/kotlin/RotationalCipherTest.kt
trackler-2.2.1.156 tracks/kotlin/exercises/rotational-cipher/src/test/kotlin/RotationalCipherTest.kt
trackler-2.2.1.155 tracks/kotlin/exercises/rotational-cipher/src/test/kotlin/RotationalCipherTest.kt
trackler-2.2.1.154 tracks/kotlin/exercises/rotational-cipher/src/test/kotlin/RotationalCipherTest.kt
trackler-2.2.1.153 tracks/kotlin/exercises/rotational-cipher/src/test/kotlin/RotationalCipherTest.kt
trackler-2.2.1.152 tracks/kotlin/exercises/rotational-cipher/src/test/kotlin/RotationalCipherTest.kt
trackler-2.2.1.151 tracks/kotlin/exercises/rotational-cipher/src/test/kotlin/RotationalCipherTest.kt
trackler-2.2.1.150 tracks/kotlin/exercises/rotational-cipher/src/test/kotlin/RotationalCipherTest.kt
trackler-2.2.1.149 tracks/kotlin/exercises/rotational-cipher/src/test/kotlin/RotationalCipherTest.kt
trackler-2.2.1.148 tracks/kotlin/exercises/rotational-cipher/src/test/kotlin/RotationalCipherTest.kt
trackler-2.2.1.147 tracks/kotlin/exercises/rotational-cipher/src/test/kotlin/RotationalCipherTest.kt
trackler-2.2.1.146 tracks/kotlin/exercises/rotational-cipher/src/test/kotlin/RotationalCipherTest.kt
trackler-2.2.1.145 tracks/kotlin/exercises/rotational-cipher/src/test/kotlin/RotationalCipherTest.kt
trackler-2.2.1.144 tracks/kotlin/exercises/rotational-cipher/src/test/kotlin/RotationalCipherTest.kt
trackler-2.2.1.143 tracks/kotlin/exercises/rotational-cipher/src/test/kotlin/RotationalCipherTest.kt
trackler-2.2.1.142 tracks/kotlin/exercises/rotational-cipher/src/test/kotlin/RotationalCipherTest.kt
trackler-2.2.1.141 tracks/kotlin/exercises/rotational-cipher/src/test/kotlin/RotationalCipherTest.kt
trackler-2.2.1.140 tracks/kotlin/exercises/rotational-cipher/src/test/kotlin/RotationalCipherTest.kt