2024-12-08 13:21:14 +00:00
|
|
|
package day_07_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"advent_of_code_2024/day_07"
|
2024-12-12 21:12:54 +00:00
|
|
|
"advent_of_code_2024/helpers"
|
2024-12-08 13:21:14 +00:00
|
|
|
_ "embed"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
//go:embed example_data.txt
|
|
|
|
var ExampleData string
|
|
|
|
|
|
|
|
func TestBasicSolutionExample(t *testing.T) {
|
2024-12-12 21:12:54 +00:00
|
|
|
helpers.Check(t, day_07.SolveBasic, helpers.Format(ExampleData), 3749)
|
2024-12-08 13:21:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestComplexSolutionExample(t *testing.T) {
|
2024-12-12 21:12:54 +00:00
|
|
|
helpers.Check(t, day_07.SolveComplex, helpers.Format(ExampleData), 11387)
|
2024-12-08 13:21:14 +00:00
|
|
|
}
|