advent-of-code/aoc2024/day01/main_test.go
xuu b1e4c4d634
Some checks failed
Go Bump / bump (push) Failing after 8s
Go Test / build (push) Failing after 45s
feat: add day 1 2024
2024-12-01 11:38:06 -07:00

42 lines
634 B
Go

package main
import (
"bufio"
"bytes"
"testing"
_ "embed"
"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)
is.Equal(result.valuePT1, 11)
is.Equal(result.valuePT2, 31)
}
func TestSolution(t *testing.T) {
is := is.New(t)
scan := bufio.NewScanner(bytes.NewReader(input))
result, err := run(scan)
is.NoErr(err)
t.Log(result)
is.Equal(result.valuePT1, 2756096)
is.Equal(result.valuePT2, 23117829)
}