blob: f6720454db5459cc08d1cb9649262441d40a07a9 (
plain)
1
2
3
4
5
6
7
8
|
(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))
|