Files
advent-of-code-2025/cmd/07/main_test.go
T

28 lines
524 B
Go
Raw Normal View History

2025-12-13 06:08:15 -06:00
package main_test
import (
"testing"
solution "github.com/StevanFreeborn/advent-of-code-2025/cmd/07"
)
func TestSolvePartOneWithExampleInput(t *testing.T) {
expected := 21
result := solution.SolvePartOne("EXAMPLE.txt")
if result != expected {
t.Errorf("SolvePartOne() = %d; want %d", result, expected)
}
}
func TestSolvePartOneWithInput(t *testing.T) {
expected := 1581
result := solution.SolvePartOne("INPUT.txt")
if result != expected {
t.Errorf("SolvePartOne() = %d; want %d", result, expected)
}
}