X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=package.lisp;h=fc7291a14aba90f1a7598e2a913efa2209c9f8a6;hb=bee53ea40ad9caeeed1e7392d1f59127df7512ac;hp=049793c45758971d631ae49a43096e1a74622567;hpb=95c39c23a9d9db5b42fbc784ac75557fb1eb1a60;p=xlunit.git diff --git a/package.lisp b/package.lisp index 049793c..fc7291a 100644 --- a/package.lisp +++ b/package.lisp @@ -6,15 +6,14 @@ ;;;; 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.3 2003/08/04 09:50:33 kevin Exp $ ;;;; ************************************************************************* (in-package #:cl-user) -(defpackage #:xltest-framework +(defpackage #:xlunit-framework (:use #:common-lisp) - (:nicknames #:xltest #:xptest) + (:nicknames #:xlunit #:xptest) (:export ;;; Framework classes #:setup @@ -23,8 +22,7 @@ #:test-failure #:failure #:run-test - #:def-test-fixture - #:make-test-case + #:make-test #:make-test-suite #:setup-testsuite-named #:teardown-testsuite-named @@ -39,7 +37,9 @@ #:assert-true #:assert-false #:test-assert + #:test-fixture + #:text-testrunner + #:summary ) (:documentation "This is the XP TestSuite Framework.")) -(in-package #:xltest)