-
-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathtask_test.go
More file actions
53 lines (48 loc) · 789 Bytes
/
task_test.go
File metadata and controls
53 lines (48 loc) · 789 Bytes
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
package main
import (
"bufio"
"fmt"
"io"
"strings"
"testing"
)
type TestItem struct {
input io.Reader
output string
}
func TestTask(t *testing.T) {
tasks := generateTasks()
for i, v := range tasks {
t.Run(fmt.Sprintf("Test %d", i+1), func(t *testing.T) {
buf := strings.Builder{}
s, n := initInput(bufio.NewScanner(v.input))
Solution(s, n, &buf)
if buf.String() != v.output {
t.Errorf("Неверный ответ решения!\nОтвет: \n%v \nВерно: \n%v", buf.String(), v.output)
}
})
}
}
func generateTasks() []TestItem {
return []TestItem{
{strings.NewReader(`examiwillpasstheexam
5
will
pass
the
exam
i
`), "YES"},
{strings.NewReader(`abacaba
2
abac
caba
`), "NO"},
{strings.NewReader(`abacaba
3
abac
caba
aba
`), "YES"},
}
}