aboutsummaryrefslogtreecommitdiff
path: root/test/test.lisp
diff options
context:
space:
mode:
authorLoic Guegan <manzerberdes@gmx.com>2019-02-24 10:30:57 +0100
committerLoic Guegan <manzerberdes@gmx.com>2019-02-24 10:30:57 +0100
commit5725987c8dfd55d4ee0282f0a37779e06052f3c6 (patch)
treed985acea2fdb3149804ea630c06662d5a8d0796c /test/test.lisp
parentd0f6e2ff9cdf4c35e99b54fa765aca7f46ed6a24 (diff)
Re-organize code
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))