From aa1871a3e62dfee34df09ab613d8366494785d0a Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Wed, 6 Aug 2003 14:15:32 +0000 Subject: [PATCH] r5464: *** empty log message *** --- assert.lisp | 8 +++++++- package.lisp | 6 ++++-- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/assert.lisp b/assert.lisp index 25db1e5..20d1276 100644 --- a/assert.lisp +++ b/assert.lisp @@ -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) + ) diff --git a/package.lisp b/package.lisp index 24acae2..2f0da68 100644 --- a/package.lisp +++ b/package.lisp @@ -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 -- 2.34.1