1 (defpackage #:aoc-test/day-9
2 (:use #:cl #:lisp-unit2)
3 (:import-from #:aoc/day-9))
4 (in-package #:aoc-test/day-9)
6 (define-test test-day-9
8 (multiple-value-bind (task-1 task-2)
9 (aoc:run-day 9 "2333133121414131402")
11 (assert= 2858 task-2)))