]> fbox.kageds.com Git - adventofcode.git/blob - 2023/gareth/day06/day06_test.go
day07
[adventofcode.git] / 2023 / gareth / day06 / day06_test.go
1 package day06
2
3 import (
4 "github.com/stretchr/testify/assert"
5 "testing"
6 )
7
8 func TestPart1(t *testing.T) {
9 r := Part1(``)
10 assert.Equal(t, 1624896, r)
11 }
12
13 func TestPart2(t *testing.T) {
14 r := Part2(``)
15 assert.Equal(t, 32583852, r)
16 }