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.1.56 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.55 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.54 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.53 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.52 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.51 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.50 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.49 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.48 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.47 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.46 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.45 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.44 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.43 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.42 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.41 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.40 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.39 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.38 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.37 tracks/go/exercises/acronym/acronym_test.go