r11859: Canonicalize whitespace
[clsql.git] / tests / package.lisp
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; ======================================================================
3 ;;;; File:     package.lisp
4 ;;;; Authors:  Marcus Pearce <m.t.pearce@city.ac.uk> and Kevin Rosenberg
5 ;;;; Created:  30/03/2004
6 ;;;; Updated:  $Id$
7 ;;;;
8 ;;;; Package definition for CLSQL test suite.
9 ;;;;
10 ;;;; This file is part of CLSQL.
11 ;;;;
12 ;;;; CLSQL users are granted the rights to distribute and use this software
13 ;;;; as governed by the terms of the Lisp Lesser GNU Public License
14 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
15 ;;;; ======================================================================
16
17 (in-package #:cl-user)
18
19 (defpackage #:clsql-tests
20   (:use #:clsql #:common-lisp #:rtest)
21   (:export
22    #:run-tests
23    #:run-tests-append-report-file
24    #:run-benchmarks
25    #:run-benchmarks-append-report-file
26    #:summarize-test-report
27    #:test-initialise-database
28    #:test-connect-to-database
29    )
30   (:documentation "Regression tests for CLSQL."))
31