advent-of-code/day04/main_test.go
xuu eb758ab41d
Some checks failed
Go Bump / bump (push) Failing after 6s
Go Test / build (push) Successful in 27s
chore: fix tests for day 4 & 5
2023-12-13 11:31:17 -07:00

35 lines
520 B
Go

package main
import (
"bufio"
"bytes"
"testing"
_ "embed"
"github.com/matryer/is"
)
//go:embed example.txt
var example []byte
func TestExample(t *testing.T) {
is := is.New(t)
scan := bufio.NewScanner(bytes.NewReader(example))
r, err := run(scan)
is.NoErr(err)
is.Equal(r.points, 13)
is.Equal(r.cards, 30)
}
func TestSolution(t *testing.T) {
is := is.New(t)
scan := bufio.NewScanner(bytes.NewReader(input))
r, err := run(scan)
is.NoErr(err)
is.Equal(r.points, 23235)
is.Equal(r.cards, 5920640)
}