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.1.0.12 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.1.0.11 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.1.0.10 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.1.0.9 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.1.0.8 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.1.0.7 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.1.0.6 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.1.0.5 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.1.0.4 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.1.0.3 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.1.0.2 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.1.0.1 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.1.0.0 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.0.8.55 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.0.8.54 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.0.8.53 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.0.8.52 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.0.8.51 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.0.8.50 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.0.8.49 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go