X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=package.lisp;h=4b51cf509d8d577dd8b202d54911d28435b85925;hb=318cda1a328e9d99af2270c73cb13262e485a1ff;hp=049793c45758971d631ae49a43096e1a74622567;hpb=95c39c23a9d9db5b42fbc784ac75557fb1eb1a60;p=xlunit.git diff --git a/package.lisp b/package.lisp index 049793c..4b51cf5 100644 --- a/package.lisp +++ b/package.lisp @@ -6,25 +6,34 @@ ;;;; Purpose: Package definition for XLTEST ;;;; Authors: Kevin Rosenberg and Craig Brozefsky ;;;; -;;;; Put in public domain by Kevin Rosenberg and onShore, Inc -;;;; $Id: package.lisp,v 1.1 2003/08/04 06:00:01 kevin Exp $ +;;;; $Id: package.lisp,v 1.4 2003/08/04 12:01:54 kevin Exp $ ;;;; ************************************************************************* (in-package #:cl-user) -(defpackage #:xltest-framework +(defpackage #:xlunit-framework (:use #:common-lisp) - (:nicknames #:xltest #:xptest) + (:nicknames #:xlunit #:xptest) (:export ;;; Framework classes + + ;; fixture + #:test-fixture #:setup #:teardown - #:perform-test + #:run-test + #:make-test + + ;; assert + #:assert-equal + #:assert-true + #:assert-false + #:test-assert #:test-failure #:failure - #:run-test - #:def-test-fixture - #:make-test-case + + ;; suite.lisp + #:text-testrunner #:make-test-suite #:setup-testsuite-named #:teardown-testsuite-named @@ -32,14 +41,14 @@ #:test-named #:remove-test #:tests + + ;; printer.lisp + #:summary + + ;; result.lisp #:test-result - #:report-result - #:make-test-suite-for-fixture - #:assert-equal - #:assert-true - #:assert-false - #:test-assert + #:make-test-result + #:was-successful ) - (:documentation "This is the XP TestSuite Framework.")) + (:documentation "This is the XLUnit Framework.")) -(in-package #:xltest)