57 lines
929 B
Go
57 lines
929 B
Go
package main
|
|
|
|
import (
|
|
"bufio"
|
|
"bytes"
|
|
"testing"
|
|
|
|
_ "embed"
|
|
|
|
"github.com/matryer/is"
|
|
)
|
|
|
|
//go:embed example1.txt
|
|
var example1 []byte
|
|
|
|
//go:embed example2.txt
|
|
var example2 []byte
|
|
|
|
//go:embed input.txt
|
|
var input []byte
|
|
|
|
func TestExample1(t *testing.T) {
|
|
is := is.New(t)
|
|
scan := bufio.NewScanner(bytes.NewReader(example1))
|
|
|
|
result, err := run(scan)
|
|
is.NoErr(err)
|
|
|
|
t.Log(result)
|
|
is.Equal(result.valuePT1, 32000000)
|
|
is.Equal(result.valuePT2, 0)
|
|
}
|
|
|
|
func TestExample2(t *testing.T) {
|
|
is := is.New(t)
|
|
scan := bufio.NewScanner(bytes.NewReader(example2))
|
|
|
|
result, err := run(scan)
|
|
is.NoErr(err)
|
|
|
|
t.Log(result)
|
|
is.Equal(result.valuePT1, 11687500)
|
|
is.Equal(result.valuePT2, 0)
|
|
}
|
|
|
|
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, 819397964)
|
|
is.Equal(result.valuePT2, 252667369442479)
|
|
}
|