X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=package.lisp;h=2f0da68080b10cf79c4ceca36e58328ff8f5ecce;hb=aa1871a3e62dfee34df09ab613d8366494785d0a;hp=4b51cf509d8d577dd8b202d54911d28435b85925;hpb=318cda1a328e9d99af2270c73cb13262e485a1ff;p=xlunit.git diff --git a/package.lisp b/package.lisp index 4b51cf5..2f0da68 100644 --- a/package.lisp +++ b/package.lisp @@ -2,52 +2,57 @@ ;;;; ************************************************************************* ;;;; FILE IDENTIFICATION ;;;; -;;;; Name: package.lisp -;;;; Purpose: Package definition for XLTEST -;;;; Authors: Kevin Rosenberg and Craig Brozefsky +;;;; 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.4 2003/08/04 12:01:54 kevin Exp $ +;;;; $Id: package.lisp,v 1.10 2003/08/06 14:15:32 kevin Exp $ ;;;; ************************************************************************* (in-package #:cl-user) -(defpackage #:xlunit-framework - (:use #:common-lisp) - (:nicknames #:xlunit #:xptest) +(defpackage #:xlunit + (:use #:cl) (:export - ;;; Framework classes - ;; fixture - #:test-fixture - #:setup - #:teardown + ;; test-case.lisp + #:test-case + #:def-test-method + #:set-up + #:tear-down + #:run #:run-test #:make-test ;; assert - #:assert-equal #:assert-true #:assert-false - #:test-assert + #:assert-equal + #:assert-eql + #:assert-not-eql + #:assert-condition + #:assert-not-condition #:test-failure #:failure ;; suite.lisp - #:text-testrunner + #:textui-test-run #:make-test-suite #:setup-testsuite-named #:teardown-testsuite-named #:add-test - #:test-named + #:named-test #:remove-test #:tests + #:get-suite + #:test-suite + #:run-on-test-results ;; printer.lisp #:summary ;; result.lisp - #:test-result - #:make-test-result + #:test-results + #:make-test-results #:was-successful ) (:documentation "This is the XLUnit Framework."))