X-Git-Url: http://git.kpe.io/?p=xlunit.git;a=blobdiff_plain;f=suite.lisp;fp=suite.lisp;h=4592100637ad30c018cce32e270f7b4449ddcc7f;hp=391258e26afb373f15de2b9f014b62dc7882c456;hb=626d4ad3a850e199e5b4a472c06ae92532c82ac8;hpb=3d99efdf0959b199cc4b2e020c7692f650094f73 diff --git a/suite.lisp b/suite.lisp index 391258e..4592100 100644 --- a/suite.lisp +++ b/suite.lisp @@ -2,7 +2,7 @@ ;;;; ************************************************************************* ;;;; FILE IDENTIFICATION ;;;; -;;;; ID: $Id: suite.lisp,v 1.7 2003/08/05 22:56:25 kevin Exp $ +;;;; ID: $Id: suite.lisp,v 1.8 2003/08/06 11:37:23 kevin Exp $ ;;;; Purpose: Suite functions for XLUnit ;;;; ;;;; ************************************************************************* @@ -69,22 +69,8 @@ This is used to dynamically generate a list of tests for a fixture." (nreverse res))) -;---------------------------------------------------------------------- -; macro def-test-method -; -; Creates the representation of a test method (included within a -; test-case object) and add it to the corresponding suite class. -; => clos version of the pluggable selector pattern -; -; use: (def-test-method test-assert-false (clos-unit-test) -; (assert-true (eql (+ 1 2) 4) "comment")) -; -; new: it calls the textui-test-run function during eval, so to -; allow the usual lisp-like incremental developing and test. -;---------------------------------------------------------------------- - -(defmacro def-test-method ((method-name instance-name class-name - &key (run t)) +(defmacro def-test-method (method-name ((instance-name class-name) + &key (run t)) &body method-body) `(let ((,instance-name (make-instance ',class-name @@ -94,4 +80,3 @@ This is used to dynamically generate a list of tests for a fixture." (add-test (suite ,instance-name) ,instance-name) (when ,run (textui-test-run ,instance-name)))) -