advent-of-code/day10/main_test.go
xuu d67ee5f3b6
All checks were successful
Go Test / build (pull_request) Successful in 19s
chore: add day 10
2023-12-09 10:59:46 -07:00

45 lines
715 B
Go

package main
import (
"bufio"
"bytes"
_ "embed"
"testing"
"github.com/matryer/is"
)
//go:embed example.txt
var example []byte
//go:embed input.txt
var input []byte
func TestExample(t *testing.T) {
is := is.New(t)
scan := bufio.NewScanner(bytes.NewReader(example))
result, err := run(scan)
is.NoErr(err)
t.Log(result.valuePT1)
is.Equal(result.valuePT1, uint64(0))
t.Log(result.valuePT2)
is.Equal(result.valuePT2, uint64(0))
}
func TestInput(t *testing.T) {
is := is.New(t)
scan := bufio.NewScanner(bytes.NewReader(input))
result, err := run(scan)
is.NoErr(err)
t.Log(result.valuePT1)
is.Equal(result.valuePT1, uint64(0))
t.Log(result.valuePT2)
is.Equal(result.valuePT2, uint64(0))
}