Sha256: f57169da7d561337bb0614083f4fbe0048060acaeb5749daa6270ac5cba52f49

Contents?: true

Size: 370 Bytes

Versions: 81

Compression:

Stored size: 370 Bytes

Contents

package atbash

import "testing"

func TestAtbash(t *testing.T) {
	for _, test := range tests {
		actual := Atbash(test.s)
		if actual != test.expected {
			t.Errorf("Atbash(%s): expected %s, actual %s", test.s, test.expected, actual)
		}
	}
}

func BenchmarkAtbash(b *testing.B) {
	for i := 0; i < b.N; i++ {

		for _, test := range tests {
			Atbash(test.s)
		}

	}
}

Version data entries

81 entries across 81 versions & 1 rubygems

Version Path
trackler-2.2.1.180 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.2.1.179 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.2.1.178 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.2.1.177 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.2.1.176 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.2.1.175 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.2.1.174 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.2.1.173 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.2.1.172 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.2.1.171 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.2.1.170 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.2.1.169 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.2.1.167 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.2.1.166 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.2.1.165 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.2.1.164 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.2.1.163 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.2.1.162 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.2.1.161 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.2.1.160 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go