Sha256: 6275eb807d563667465ac2411c515daf8c3c46ae7a93d64db7189ed7aa62d284

Contents?: true

Size: 987 Bytes

Versions: 81

Compression:

Stored size: 987 Bytes

Contents

package atbash

import "testing"

const targetTestVersion = 1

var tests = []struct {
	expected string
	s        string
}{
	{"ml", "no"},
	{"ml", "no"},
	{"bvh", "yes"},
	{"lnt", "OMG"},
	{"lnt", "O M G"},
	{"nrmwy oldrm tob", "mindblowingly"},
	{"gvhgr mt123 gvhgr mt", "Testing, 1 2 3, testing."},
	{"gifgs rhurx grlm", "Truth is fiction."},
	{"gsvjf rxpyi ldmul cqfnk hlevi gsvoz abwlt", "The quick brown fox jumps over the lazy dog."},
}

func TestTestVersion(t *testing.T) {
	if testVersion != targetTestVersion {
		t.Fatalf("Found testVersion = %v, want %v", testVersion, targetTestVersion)
	}
}

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) {
	b.StopTimer()
	for _, test := range tests {
		b.StartTimer()

		for i := 0; i < b.N; i++ {
			Atbash(test.s)
		}

		b.StopTimer()
	}
}

Version data entries

81 entries across 81 versions & 1 rubygems

Version Path
trackler-2.0.8.28 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.0.8.27 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.0.8.26 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.0.8.24 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.0.8.23 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.0.8.22 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.0.8.21 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.0.8.20 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.0.8.19 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.0.8.18 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.0.8.17 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.0.8.16 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.0.8.15 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.0.8.14 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.0.8.13 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.0.8.12 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.0.8.11 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.0.8.10 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.0.8.9 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.0.8.8 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go