Sha256: 6bfd7d62f371fca581d1239cd21d04c9369ff62d4e52d734fcc9164d53ff70c9

Contents?: true

Size: 427 Bytes

Versions: 92

Compression:

Stored size: 427 Bytes

Contents

package acronym

import (
	"testing"
)

func TestAcronym(t *testing.T) {
	for _, test := range stringTestCases {
		actual := Abbreviate(test.input)
		if actual != test.expected {
			t.Errorf("Acronym test [%s], expected [%s], actual [%s]", test.input, test.expected, actual)
		}
	}
}

func BenchmarkAcronym(b *testing.B) {
	for i := 0; i < b.N; i++ {
		for _, test := range stringTestCases {
			Abbreviate(test.input)
		}
	}
}

Version data entries

92 entries across 92 versions & 1 rubygems

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