r5464: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Wed, 6 Aug 2003 14:15:32 +0000 (14:15 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Wed, 6 Aug 2003 14:15:32 +0000 (14:15 +0000)
assert.lisp
package.lisp

index 25db1e5e3ca93d8ab70392aeef29e8e4f4a6d237..20d12765abd9740a8d79725b036b8becc9a60006 100644 (file)
@@ -2,7 +2,7 @@
 ;;;; *************************************************************************
 ;;;; FILE IDENTIFICATION
 ;;;;
-;;;; ID:       $Id: assert.lisp,v 1.6 2003/08/05 22:56:25 kevin Exp $
+;;;; ID:       $Id: assert.lisp,v 1.7 2003/08/06 14:15:32 kevin Exp $
 ;;;; Purpose:  Assert functions for XLUnit
 ;;;;
 ;;;; *************************************************************************
@@ -47,3 +47,9 @@
 (defmacro assert-false (v &optional message)
   `(when ,v
      (failure-message ,message "Assert false: ~S" ',v)))
+
+(defmacro assert-condition (condition v &optional message)
+  )
+
+(defmacro assert-not-condition (condition v &optional message)
+  )
index 24acae2d8f1d007b35fffb2bc9635b030716f2f2..2f0da68080b10cf79c4ceca36e58328ff8f5ecce 100644 (file)
@@ -2,10 +2,10 @@
 ;;;; *************************************************************************
 ;;;; FILE IDENTIFICATION
 ;;;;
-;;;; ID:      $Id: package.lisp,v 1.9 2003/08/05 22:56:25 kevin Exp $
+;;;; ID:      $Id: package.lisp,v 1.10 2003/08/06 14:15:32 kevin Exp $
 ;;;; Purpose: Package definition for XLUnit
 ;;;;
-;;;; $Id: package.lisp,v 1.9 2003/08/05 22:56:25 kevin Exp $
+;;;; $Id: package.lisp,v 1.10 2003/08/06 14:15:32 kevin Exp $
 ;;;; *************************************************************************
 
 (in-package #:cl-user)
@@ -29,6 +29,8 @@
    #:assert-equal
    #:assert-eql
    #:assert-not-eql
+   #:assert-condition
+   #:assert-not-condition
    #:test-failure
    #:failure