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.16 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.15 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.14 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.13 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.12 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.11 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.10 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.9 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.8 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.7 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.6 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.5 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.4 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.3 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.2 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.1 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.1.0 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.0.6 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.0.5 tracks/go/exercises/acronym/acronym_test.go
trackler-2.2.0.4 tracks/go/exercises/acronym/acronym_test.go