lisp-algo/test/test.lisp

9 lines
324 B
Common Lisp
Raw Normal View History

2019-02-24 10:30:57 +01:00
(in-package :com.lisp-algo.test)
(defun do-tests ()
"Configure lisp-unit and run all tests."
(setq *print-errors* t) ; Details tests locations when running tests
(setq *print-summary* t) ; Details on tests
(setq *print-failures* t) ; Details tests locations when failures
(run-tests :all :com.lisp-algo.test))