Sha256: df41d0445cfc03dc006060afd30680ab75c02a2f10da162696eb1ab3a1f7c229

Contents?: true

Size: 474 Bytes

Versions: 91

Compression:

Stored size: 474 Bytes

Contents

package acronym

import (
	"testing"
)

const targetTestVersion = 3

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

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

91 entries across 91 versions & 1 rubygems

Version Path
trackler-2.2.0.3 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.0.2 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.0.1 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.0.0 tracks/go/exercises/acronym/acronym_test.go
trackler-2.1.0.55 tracks/go/exercises/acronym/acronym_test.go
trackler-2.1.0.54 tracks/go/exercises/acronym/acronym_test.go
trackler-2.1.0.53 tracks/go/exercises/acronym/acronym_test.go
trackler-2.1.0.52 tracks/go/exercises/acronym/acronym_test.go
trackler-2.1.0.51 tracks/go/exercises/acronym/acronym_test.go
trackler-2.1.0.50 tracks/go/exercises/acronym/acronym_test.go
trackler-2.1.0.49 tracks/go/exercises/acronym/acronym_test.go
trackler-2.1.0.48 tracks/go/exercises/acronym/acronym_test.go
trackler-2.1.0.47 tracks/go/exercises/acronym/acronym_test.go
trackler-2.1.0.46 tracks/go/exercises/acronym/acronym_test.go
trackler-2.1.0.45 tracks/go/exercises/acronym/acronym_test.go
trackler-2.1.0.44 tracks/go/exercises/acronym/acronym_test.go
trackler-2.1.0.43 tracks/go/exercises/acronym/acronym_test.go
trackler-2.1.0.42 tracks/go/exercises/acronym/acronym_test.go
trackler-2.1.0.41 tracks/go/exercises/acronym/acronym_test.go
trackler-2.1.0.40 tracks/go/exercises/acronym/acronym_test.go