X-Git-Url: http://git.kpe.io/?p=xlunit.git;a=blobdiff_plain;f=tcase.lisp;fp=tcase.lisp;h=7aefbddd639047b90c1c63b3efac3196bc59777e;hp=3d5ee6623fdd5a4abb64ed6fbe8464bbb24ec81f;hb=ca683dc694122458db8864fe6519b3e07899b045;hpb=eec979fc057d3ff9bbc712235a7ca4dabf937b71 diff --git a/tcase.lisp b/tcase.lisp index 3d5ee66..7aefbdd 100644 --- a/tcase.lisp +++ b/tcase.lisp @@ -15,17 +15,17 @@ (defclass test-case (test) ((existing-suites :initform nil :accessor existing-suites - :allocation :class) + :allocation :class) (method-body :initarg :method-body :accessor method-body :initform nil :documentation "A function designator which will be applied to this instance to perform that test-case.") (name :initarg :name :reader name :initform "" - :documentation "The name of this test-case, used in reports.") + :documentation "The name of this test-case, used in reports.") (description :initarg :description :reader description - :documentation - "Short description of this test-case, uses in reports") + :documentation + "Short description of this test-case, uses in reports") (suite :initform nil :accessor suite :initarg :suite)) (:documentation "Base class for test-cases.")) @@ -38,7 +38,7 @@ to perform that test-case.") (setf (gethash (type-of ob) (existing-suites ob)) (make-instance 'test-suite))) ;;specifi suite singleton (setf (suite ob) (gethash (type-of ob) (existing-suites ob)))) - + (defgeneric set-up (test) (:documentation @@ -63,7 +63,7 @@ that the setup method did for this instance.")) res)) (defmethod run-on-test-results ((test test-case) result - &key (handle-errors t)) + &key (handle-errors t)) (start-test test result) (run-protected test result :handle-errors handle-errors) (end-test test result)) @@ -80,10 +80,10 @@ that the setup method did for this instance.")) (defmethod run-protected ((test test-case) res &key (handle-errors t)) (if handle-errors (handler-case - (run-base test) - (assertion-failed (condition) - (add-failure res test condition)) - (serious-condition (condition) - (add-error res test condition))) + (run-base test) + (assertion-failed (condition) + (add-failure res test condition)) + (serious-condition (condition) + (add-error res test condition))) (run-base test)) res)