aoc-cl/tests/2024/day10-test.lisp

17 lines
420 B
Common Lisp
Raw Normal View History

2024-12-10 09:30:01 +01:00
(defpackage :aoc/2024/10/tests
(:use :cl :aoc :aoc/tests :aoc/2024/tests :parachute :aoc/2024/10))
(in-package :aoc/2024/10/tests)
(define-test suite-2024-10
;:parent suite-2024
)
(define-test+run test-part1
:parent suite-2024-10
(is equal "36" (part1 sample-data)))
(define-test+run test-part2
:parent suite-2024-10
(is equal "81" (part2 sample-data)))