Sha256: 1e6705cbaf8efe17238800076009dbf1a9ef05bc2cf220f4757d70f11931e5bf
Contents?: true
Size: 752 Bytes
Versions: 307
Compression:
Stored size: 752 Bytes
Contents
import org.junit.Test import org.junit.Ignore class IncorrectKeyCipherTest { @Test(expected = IllegalArgumentException::class) fun cipherThrowsWithAllCapsKey() { Cipher("ABCDEF") } @Ignore @Test(expected = IllegalArgumentException::class) fun cipherThrowsWithAnyCapsKey() { Cipher("abcdEFg") } @Ignore @Test(expected = IllegalArgumentException::class) fun cipherThrowsWithNumericKey() { Cipher("12345") } @Ignore @Test(expected = IllegalArgumentException::class) fun cipherThrowsWithAnyNumericKey() { Cipher("abcd345ef") } @Ignore @Test(expected = IllegalArgumentException::class) fun cipherThrowsWithEmptyKey() { Cipher("") } }
Version data entries
307 entries across 307 versions & 1 rubygems