35 lines
724 B
Go
35 lines
724 B
Go
package wordcount
|
|
|
|
import (
|
|
"reflect"
|
|
"testing"
|
|
)
|
|
|
|
const testVersion = 1
|
|
|
|
// Retired testVersions
|
|
// (none) 133d626683b18a22f9aa59ad0990c7d0f565291c
|
|
|
|
func TestWordCount(t *testing.T) {
|
|
if TestVersion != testVersion {
|
|
t.Fatalf("Found TestVersion = %v, want %v", TestVersion, testVersion)
|
|
}
|
|
for _, tt := range testCases {
|
|
expected := tt.output
|
|
actual := WordCount(tt.input)
|
|
if !reflect.DeepEqual(actual, expected) {
|
|
t.Fatalf("%s\n\tExpected: %v\n\tGot: %v", tt.description, expected, actual)
|
|
} else {
|
|
t.Logf("PASS: %s - WordCount(%s)", tt.description, tt.input)
|
|
}
|
|
}
|
|
}
|
|
|
|
func BenchmarkWordCount(b *testing.B) {
|
|
for i := 0; i < b.N; i++ {
|
|
for _, tt := range testCases {
|
|
WordCount(tt.input)
|
|
}
|
|
}
|
|
}
|