X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=package.lisp;h=6b58890dac78fc1cec7c4107b5edcc41fcaee129;hb=e6a0ad7329d3ce497ce8c9f3d0d37811b2da4811;hp=e935fda13fbabe7f4bb5318d19439a622ff8ff54;hpb=c7bc011f355411986f238987a4f97c93f66818dc;p=xlunit.git diff --git a/package.lisp b/package.lisp index e935fda..6b58890 100644 --- a/package.lisp +++ b/package.lisp @@ -2,28 +2,36 @@ ;;;; ************************************************************************* ;;;; FILE IDENTIFICATION ;;;; -;;;; Name: package.lisp -;;;; Purpose: Package definition for XLTEST -;;;; Authors: Kevin Rosenberg and Craig Brozefsky +;;;; ID: $Id: package.lisp,v 1.6 2003/08/04 16:13:58 kevin Exp $ +;;;; Purpose: Package definition for XLUnit ;;;; -;;;; Put in public domain by Kevin Rosenberg and onShore, Inc -;;;; $Id: package.lisp,v 1.2 2003/08/04 09:46:44 kevin Exp $ +;;;; $Id: package.lisp,v 1.6 2003/08/04 16:13:58 kevin Exp $ ;;;; ************************************************************************* (in-package #:cl-user) -(defpackage #:xltest-framework - (:use #:common-lisp) - (:nicknames #:xltest #:xptest) +(defpackage #:xlunit + (:use #:cl) (:export - ;;; Framework classes + + ;; test-case.lisp + #:test-case + #:def-test-method #:setup #:teardown - #:perform-test - #:test-failure - #:failure #:run-test #:make-test + + ;; assert + #:assert-true + #:assert-false + #:assert-equal + #:assert-eql + #:test-failure + #:failure + + ;; suite.lisp + #:textui-test-run #:make-test-suite #:setup-testsuite-named #:teardown-testsuite-named @@ -31,17 +39,14 @@ #:test-named #:remove-test #:tests - #:test-result - #:report-result - #:make-test-suite-for-fixture - #:assert-equal - #:assert-true - #:assert-false - #:test-assert - #:test-fixture - #:text-testrunner + + ;; printer.lisp #:summary + + ;; result.lisp + #:test-result + #:make-test-result + #:was-successful ) - (:documentation "This is the XP TestSuite Framework.")) + (:documentation "This is the XLUnit Framework.")) -(in-package #:xltest)