-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain_test.go
62 lines (49 loc) · 963 Bytes
/
main_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
package main
import (
"os"
"testing"
)
func TestPart1(t *testing.T) {
file, err := os.ReadFile("./input.txt")
if err != nil {
t.Errorf(err.Error())
}
input := string(file)
actual := Part1(input)
expect := 32076
if actual != expect {
t.Errorf("Actual: %d, Expect: %d", actual, expect)
}
}
func BenchmarkPart1(b *testing.B) {
file, err := os.ReadFile("./input.txt")
if err != nil {
b.Errorf(err.Error())
}
input := string(file)
for i := 0; i < b.N; i++ {
Part1(input)
}
}
func TestPart2(t *testing.T) {
file, err := os.ReadFile("./input.txt")
if err != nil {
t.Errorf(err.Error())
}
input := string(file)
actual := Part2(input)
expect := 34278221
if actual != expect {
t.Errorf("Actual: %d, Expect: %d", actual, expect)
}
}
func BenchmarkPart2(b *testing.B) {
file, err := os.ReadFile("./input.txt")
if err != nil {
b.Errorf(err.Error())
}
input := string(file)
for i := 0; i < b.N; i++ {
Part2(input)
}
}