1
0
Fork 0
mirror of https://github.com/Luzifer/aoc2019.git synced 2024-10-18 11:14:19 +00:00
aoc2019/day11_test.go

22 lines
454 B
Go
Raw Normal View History

package aoc2019
import "testing"
func TestCalculateDay11_Part1(t *testing.T) {
count, err := solveDay11Part1("day11_input.txt")
if err != nil {
t.Fatalf("Day 11 solver failed: %s", err)
}
t.Logf("Solution Day 11 Part 1: %d", count)
}
func TestCalculateDay11_Part2(t *testing.T) {
err := solveDay11Part2("day11_input.txt")
if err != nil {
t.Fatalf("Day 11 solver failed: %s", err)
}
t.Log("Solution Day 11 Part 2: See day11_image.png")
}