aboutsummaryrefslogtreecommitdiff
path: root/test/test.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'test/test.lisp')
-rw-r--r--test/test.lisp8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/test.lisp b/test/test.lisp
new file mode 100644
index 0000000..f672045
--- /dev/null
+++ b/test/test.lisp
@@ -0,0 +1,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))