-
Notifications
You must be signed in to change notification settings - Fork 1
/
patients_test.go
122 lines (108 loc) · 2.76 KB
/
patients_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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
package main
import (
"testing"
)
func TestShouldReturnEcogForKarnofsky100WithoutPercent(t *testing.T) {
actual := karnofskyToEcog("100")
expected := "0"
if actual != expected {
t.Logf("wrong ecog: Expected %s, got %s", expected, actual)
t.Fail()
}
}
func TestShouldReturnEcogForKarnofsky100(t *testing.T) {
actual := karnofskyToEcog("100%")
expected := "0"
if actual != expected {
t.Logf("wrong ecog: Expected %s, got %s", expected, actual)
t.Fail()
}
}
func TestShouldReturnEcogForKarnofsky90(t *testing.T) {
actual := karnofskyToEcog("90%")
expected := "0"
if actual != expected {
t.Logf("wrong ecog: Expected %s, got %s", expected, actual)
t.Fail()
}
}
func TestShouldReturnEcogForKarnofsky80(t *testing.T) {
actual := karnofskyToEcog("80%")
expected := "1"
if actual != expected {
t.Logf("wrong ecog: Expected %s, got %s", expected, actual)
t.Fail()
}
}
func TestShouldReturnEcogForKarnofsky70(t *testing.T) {
actual := karnofskyToEcog("70%")
expected := "1"
if actual != expected {
t.Logf("wrong ecog: Expected %s, got %s", expected, actual)
t.Fail()
}
}
func TestShouldReturnEcogForKarnofsky60(t *testing.T) {
actual := karnofskyToEcog("60%")
expected := "2"
if actual != expected {
t.Logf("wrong ecog: Expected %s, got %s", expected, actual)
t.Fail()
}
}
func TestShouldReturnEcogForKarnofsky50(t *testing.T) {
actual := karnofskyToEcog("50%")
expected := "2"
if actual != expected {
t.Logf("wrong ecog: Expected %s, got %s", expected, actual)
t.Fail()
}
}
func TestShouldReturnEcogForKarnofsky40(t *testing.T) {
actual := karnofskyToEcog("40%")
expected := "3"
if actual != expected {
t.Logf("wrong ecog: Expected %s, got %s", expected, actual)
t.Fail()
}
}
func TestShouldReturnEcogForKarnofsky30(t *testing.T) {
actual := karnofskyToEcog("30%")
expected := "3"
if actual != expected {
t.Logf("wrong ecog: Expected %s, got %s", expected, actual)
t.Fail()
}
}
func TestShouldReturnEcogForKarnofsky20(t *testing.T) {
actual := karnofskyToEcog("20%")
expected := "4"
if actual != expected {
t.Logf("wrong ecog: Expected %s, got %s", expected, actual)
t.Fail()
}
}
func TestShouldReturnEcogForKarnofsky10(t *testing.T) {
actual := karnofskyToEcog("10%")
expected := "4"
if actual != expected {
t.Logf("wrong ecog: Expected %s, got %s", expected, actual)
t.Fail()
}
}
func TestShouldReturnEcogForKarnofsky0(t *testing.T) {
actual := karnofskyToEcog("0%")
expected := "5"
if actual != expected {
t.Logf("wrong ecog: Expected %s, got %s", expected, actual)
t.Fail()
}
}
func TestShouldSanitizeUmlaute(t *testing.T) {
actual := sanitizeUmlaute("Bösartige Neubildung")
expected := "Boesartige Neubildung"
if actual != expected {
t.Logf("wrong value: Expected %s, got %s", expected, actual)
t.Fail()
}
}