package main import ( "testing" "github.com/alexchao26/advent-of-code-go/util" ) var example = `pos=<0,0,0>, r=4 pos=<1,0,0>, r=1 pos=<4,0,0>, r=3 pos=<0,2,0>, r=1 pos=<0,5,0>, r=3 pos=<0,0,3>, r=1 pos=<1,1,1>, r=1 pos=<1,1,2>, r=1 pos=<1,3,1>, r=1` var tests1 = []struct { name string want int input string }{ {"example", 7, example}, {"actual", 573, util.ReadFile("input.txt")}, } func TestPart1(t *testing.T) { for _, tt := range tests1 { t.Run(tt.name, func(t *testing.T) { if got := part1(tt.input); got != tt.want { t.Errorf("part1() = %v, want %v", got, tt.want) } }) } } var example2 = `pos=<10,12,12>, r=2 pos=<12,14,12>, r=2 pos=<16,12,12>, r=4 pos=<14,14,14>, r=6 pos=<50,50,50>, r=200 pos=<10,10,10>, r=5` var tests2 = []struct { name string want int input string }{ {"example", 36, example2}, {"actual", 107279292, util.ReadFile("input.txt")}, } func TestPart2(t *testing.T) { for _, tt := range tests2 { t.Run(tt.name, func(t *testing.T) { if got := part2(tt.input); got != tt.want { t.Errorf("part2() = %v, want %v", got, tt.want) } }) } }