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

28 lines
639 B
Common Lisp
Raw Normal View History

2024-12-23 17:26:56 +01:00
(defpackage :aoc/2024/24/tests
(:use :cl :aoc :aoc/tests :aoc/2024/tests :parachute :aoc/2024/24))
(in-package :aoc/2024/24/tests)
(define-test suite-2024-24
;:parent suite-2024
)
(define-test test-foo
:parent suite-2024-24
)
(define-test test-bar
:parent suite-2024-24
)
(define-test+run test-part1
:parent suite-2024-24
(is equal nil (part1 sample-data)))
(define-test+run test-part2
:parent suite-2024-24
(is equal nil (part2 sample-data)))