X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Ftest.lisp;h=553a64e4bc9505c26564e5bad53b566326d3ead3;hb=fdc09912d20111bc61a5be162c4728c1fb5f41ed;hp=2e3020a3ef00167eab27d31f5064013d0077a3ba;hpb=4444b7fb7a9cc1865b49e254e1964b8581ce2bb2;p=fiveam.git diff --git a/src/test.lisp b/src/test.lisp index 2e3020a..553a64e 100644 --- a/src/test.lisp +++ b/src/test.lisp @@ -15,6 +15,10 @@ :documentation "Lookup table mapping test (and test suite) names to objects.") +(defun test-names () + (loop for test being the hash-keys of *test* + collect test)) + (defmacro test (name &body body) "Create a test named NAME. If NAME is a list it must be of the form: @@ -43,25 +47,31 @@ depending on another. SUITE defaults to the current value of *SUITE*." (destructuring-bind (name &key depends-on (suite nil suite-supplied-p)) (ensure-list name) - (let (lambda description) + (let (description) (setf description (if (stringp (car body)) (pop body) - "") - lambda body) + "")) `(progn - (setf (get-test ',name) - (make-instance 'test-case - :name ',name - :test-lambda (lambda () ,@lambda) - :description ,description - :depends-on ',depends-on)) + (setf (get-test ',name) (make-instance 'test-case + :name ',name + :runtime-package ,*package* + :test-lambda + (lambda () + (funcall (compile nil '(lambda () ,@body)))) + :description ,description + :depends-on ',depends-on)) ,(if suite-supplied-p `(setf (gethash ',name (tests (get-test ',suite))) ',name) `(setf (gethash ',name (tests (or *suite* (get-test 'NIL)))) ',name)) + (when *run-test-when-defined* + (run! ',name)) ',name)))) +(defvar *run-test-when-defined* nil + "When non-NIL tests are run as soon as they are defined.") + ;; Copyright (c) 2002-2003, Edward Marco Baringer ;; All rights reserved. ;;