r5461: *** empty log message ***
[xlunit.git] / suite.lisp
index 391258e26afb373f15de2b9f014b62dc7882c456..4592100637ad30c018cce32e270f7b4449ddcc7f 100644 (file)
@@ -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))))
-