-
Notifications
You must be signed in to change notification settings - Fork 2
/
affixes_test.go
81 lines (74 loc) · 2.04 KB
/
affixes_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
// This file is part of Fwew.
// Fwew is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Fwew is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Fwew. If not, see http://gnu.org/licenses/
// Package main contains all the things. affixes_test.go -- you guess it -- tests affixes.go functions.
package main
import (
"flag"
"testing"
)
func init() {
// set relevant option flag(s)
configuration = ReadConfig()
debug = flag.Bool("d", configuration.DebugMode, Text("usageD"))
//flag.Parse()
}
func TestPrefix(t *testing.T) {
w0 := Word{
Target: "tsatute",
Attempt: "tute",
PartOfSpeech: "n.",
Affixes: map[string][]string{},
}
w0 = prefix(w0)
if w0.Attempt != w0.Target {
t.Errorf("Got %s, Want %s", w0.Attempt, w0.Target)
}
}
func TestSuffix(t *testing.T) {
w0 := Word{
Target: "eltuti",
Attempt: "eltu",
PartOfSpeech: "n.",
Affixes: map[string][]string{},
}
w0 = suffix(w0)
if w0.Attempt != w0.Target {
t.Errorf("Got %s, Want %s", w0.Attempt, w0.Target)
}
}
func TestInfix(t *testing.T) {
w0 := Word{
Target: "täpeykiyevarängon",
Attempt: "taron",
InfixLocations: "t<0><1>ar<2>on",
PartOfSpeech: "vtr.",
Affixes: map[string][]string{},
}
w0 = infix(w0)
if w0.Attempt != w0.Target {
t.Errorf("Got %s, Want %s", w0.Attempt, w0.Target)
}
}
func TestReconstruct(t *testing.T) {
w0 := Word{
Target: "tolaron",
Attempt: "taron",
PartOfSpeech: "vtr.",
Affixes: map[string][]string{},
}
w0 = Reconstruct(w0)
if w0.Attempt != w0.Target {
t.Errorf("Got %s, Want %s", w0.Attempt, w0.Target)
}
}