Sha256: d2413d7a9b0fe4f8e75a309df5cbf4d6993e77ca6d5c807c80e2bcba52e22aff

Contents?: true

Size: 607 Bytes

Versions: 106

Compression:

Stored size: 607 Bytes

Contents

package atbash

import "testing"

const targetTestVersion = 2

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

106 entries across 106 versions & 1 rubygems

Version Path
trackler-2.2.1.36 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.2.1.35 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.2.1.34 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.2.1.33 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.2.1.32 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.2.1.31 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.2.1.30 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.2.1.29 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.2.1.28 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.2.1.27 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.2.1.26 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.2.1.25 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.2.1.24 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.2.1.23 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.2.1.22 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.2.1.21 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.2.1.20 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.2.1.19 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.2.1.18 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go
trackler-2.2.1.17 tracks/go/exercises/atbash-cipher/atbash_cipher_test.go