Remove CVS $Id$ keyword
[clsql.git] / tests / package.lisp
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:     package.lisp
6 ;;;; Purpose:  Package definition for CLSQL test suite
7 ;;;; Authors:  Marcus Pearce and Kevin M. Rosenberg
8 ;;;; Created:  March 2004
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
18 (in-package #:cl-user)
19
20 (defpackage #:clsql-tests
21   (:use #:clsql #:common-lisp #:rtest)
22   (:export
23    #:run-tests
24    #:run-tests-append-report-file
25    #:run-benchmarks
26    #:run-benchmarks-append-report-file
27    #:summarize-test-report
28    #:test-initialise-database
29    #:test-connect-to-database
30    )
31   (:documentation "Regression tests for CLSQL."))
32