Advent-of-Code/2021/day3/main_test.go

11 lines
190 B
Go

package main
import "testing"
func TestPart1(t *testing.T) {
const expected = 198
result := Part1()
if result != expected {
t.Fatalf("Expected: %d Result: %d", expected, result)
}
}