1 aea08906 2024-12-14 lh (defpackage #:aoc-test/day-14
2 aea08906 2024-12-14 lh (:use #:cl #:lisp-unit2)
3 aea08906 2024-12-14 lh (:import-from #:aoc/day-14))
4 aea08906 2024-12-14 lh (in-package #:aoc-test/day-14)
6 aea08906 2024-12-14 lh (define-test test-day-14
8 aea08906 2024-12-14 lh (with-input-from-string (s "p=0,4 v=3,-3
19 aea08906 2024-12-14 lh p=9,5 v=-3,-3")
20 d7b2a01d 2024-12-14 lh (assert= 12 (aoc/day-14:task-1 (aoc/day-14:parse-robots s) 11 7))))