Sha256: 5d27df8728fec90b7f8a5682fa16cdac7101fc1ffbbbc46a629bc6f9e6310620

Contents?: true

Size: 284 Bytes

Versions: 30

Compression:

Stored size: 284 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)
		}
	}
}

Version data entries

30 entries across 30 versions & 1 rubygems

Version Path
trackler-2.2.1.86 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.85 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.84 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.83 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.82 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.81 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.80 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.79 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.78 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.77 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.76 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.75 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.74 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.73 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.72 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.71 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.70 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.69 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.68 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.67 tracks/go/exercises/acronym/acronym_test.go