18 lines
389 B
Common Lisp
18 lines
389 B
Common Lisp
(defpackage :aoc/2024/03/tests
|
|
(:use :cl :aoc :aoc/tests :aoc/2024/tests :parachute :aoc/2024/03))
|
|
|
|
(in-package :aoc/2024/03/tests)
|
|
|
|
(define-test suite-2024-03
|
|
;:parent suite-2024
|
|
)
|
|
|
|
(define-test+run test-part1
|
|
:parent suite-2024-03
|
|
(true (equalp "161" (part1 sample-data))))
|
|
|
|
(define-test+run test-part2
|
|
:parent suite-2024-03
|
|
(true (equalp "48" (part2 sample-data2))))
|
|
|
|
|