X-Git-Url: http://git.kpe.io/?p=xlunit.git;a=blobdiff_plain;f=assert.lisp;h=460bb4d07a92cc1246a0a9913a2ff92ffb9f21e9;hp=269e797af812df4c46f63a38e30d922d46b10e9b;hb=53c699a7ed91f78c0e31b7bbd7deda671ca9df05;hpb=8133177de9c5d202520bd83b5e797ef7a39942ad diff --git a/assert.lisp b/assert.lisp index 269e797..460bb4d 100644 --- a/assert.lisp +++ b/assert.lisp @@ -2,7 +2,7 @@ ;;;; ************************************************************************* ;;;; FILE IDENTIFICATION ;;;; -;;;; ID: $Id: assert.lisp,v 1.2 2003/08/04 12:16:13 kevin Exp $ +;;;; ID: $Id: assert.lisp,v 1.3 2003/08/04 12:28:46 kevin Exp $ ;;;; Purpose: Assert functions for XLUnit ;;;; ;;;; ************************************************************************* @@ -17,25 +17,29 @@ (:documentation "Base class for all test failures.")) -(defun failure (format-str &rest args) +(defun failure-msg (msg &optional format-str &rest args) "Signal a test failure and exit the test." (signal 'test-failure-condition + :msg msg :format-control format-str :format-arguments args)) +(defun failure (format-str &rest args) + "Signal a test failure and exit the test." + (apply #'failure-msg nil format-str args)) + (defmacro test-assert (test &optional msg) `(unless ,test - (failure "Test assertion: ~s" ',test))) + (failure-msg ,msg "Test assertion: ~s" ',test))) (defun assert-equal (v1 v2 &optional msg) (unless (equal v1 v2) - (failure "Test equal: ~s ~s" v1 v2))) - -(defun assert-true (v &optional msg) - (unless v - (failure "Test true: ~s [~A]" v (if msg msg "")))) + (failure-msg msg "Test equal: ~S ~S" v1 v2))) -(defun assert-false (v &optional msg) - (when v - (failure "Test false ~A" (if msg msg "")))) +(defmacro assert-true (v &optional msg) + `(unless ,v + (failure-msg msg "Not true: ~S" ',v))) +(defmacro assert-false (v &optional msg) + `(when ,v + (failure-msg msg "Not false: ~S" ',v)))