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.1.0.39 tracks/go/exercises/acronym/acronym_test.go
trackler-2.1.0.38 tracks/go/exercises/acronym/acronym_test.go
trackler-2.1.0.37 tracks/go/exercises/acronym/acronym_test.go
trackler-2.1.0.36 tracks/go/exercises/acronym/acronym_test.go
trackler-2.1.0.34 tracks/go/exercises/acronym/acronym_test.go
trackler-2.1.0.33 tracks/go/exercises/acronym/acronym_test.go
trackler-2.1.0.32 tracks/go/exercises/acronym/acronym_test.go
trackler-2.1.0.31 tracks/go/exercises/acronym/acronym_test.go
trackler-2.1.0.30 tracks/go/exercises/acronym/acronym_test.go
trackler-2.1.0.29 tracks/go/exercises/acronym/acronym_test.go
trackler-2.1.0.28 tracks/go/exercises/acronym/acronym_test.go