Jon Lundy aa84e3974b
Some checks failed
Go Test / build (pull_request) Failing after 1m31s
feat: add day 6 2024
2025-07-06 16:09:34 -06:00

44 lines
656 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, 41)
is.Equal(result.valuePT2, 6)
}
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, 5329)
is.True(result.valuePT2 > 897)
is.Equal(result.valuePT2, 0)
}