stemmerru/stemmer_test.go
Alexander Kiryukhin cf07a154d5
Move files
Added travis.yml
2018-05-10 03:14:06 +03:00

27 lines
539 B
Go

package StemmerRu
import (
"testing"
"io/ioutil"
"encoding/json"
)
var testFile = `tests.json`
func TestStemWord(t *testing.T) {
file, err := ioutil.ReadFile(testFile)
if err != nil {
t.Error("Can't open file", testFile)
}
tests := &map[string]string{}
err = json.Unmarshal(file, tests)
if err != nil {
t.Error("Can't parse json", err)
}
for source, expected := range *tests {
result := StemWord(source);
if expected != result {
t.Errorf(`Expected "%s" (source: %s) but got "%s"`, result, source, result)
}
}
}