28 lines
505 B
Go
28 lines
505 B
Go
package main_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
solution "github.com/StevanFreeborn/advent-of-code-2025/cmd/10"
|
|
)
|
|
|
|
func TestSolvePartOneWithExampleInput(t *testing.T) {
|
|
expected := 7
|
|
|
|
result := solution.SolvePartOne("EXAMPLE.txt")
|
|
|
|
if result != expected {
|
|
t.Errorf("got %d but wanted %d", result, expected)
|
|
}
|
|
}
|
|
|
|
func TestSolvePartOneWithInput(t *testing.T) {
|
|
expected := -1
|
|
|
|
result := solution.SolvePartOne("INPUT.txt")
|
|
|
|
if result != expected {
|
|
t.Errorf("got %d but wanted %d", result, expected)
|
|
}
|
|
}
|