Files
advent-of-code-go/2020/day06/main_test.go
T
2020-11-29 16:05:41 -05:00

22 lines
317 B
Go

package main
import (
"testing"
"github.com/alexchao26/advent-of-code-go/util"
)
func TestPart1(t *testing.T) {
// Examples
// Run actual problem input
// part1(util.ReadFile("input.txt"))
}
func TestPart2(t *testing.T) {
// Examples
// Run actual problem input
// part2(util.ReadFile("input.txt"))
}