Use package locks on SBCL
[fiveam.git] / src / package.lisp
1 ;;;; -*- Mode: Lisp; indent-tabs-mode: nil -*-
2
3 ;;;; * Introduction
4
5 ;;;; FiveAM is a testing framework. It takes care of all the boring
6 ;;;; bookkeeping associated with managing a test framework allowing
7 ;;;; the developer to focus on writing tests and code.
8
9 ;;;; FiveAM was designed with the following premises:
10
11 ;;;; - Defining tests should be about writing tests, not
12 ;;;; infrastructure. The developer should be able to focus on what
13 ;;;; they're testing, not the testing framework.
14
15 ;;;; - Interactive testing is the norm. Common Lisp is an interactive
16 ;;;; development environment, the testing environment should allow the
17 ;;;; developer to quickly and easily redefine, change, remove and run
18 ;;;; tests.
19
20 (defpackage :it.bese.fiveam
21   (:use :common-lisp :alexandria)
22   (:nicknames :5am :fiveam)
23   #+sb-package-locks
24   (:lock t)
25   (:export
26    ;; creating tests and test-suites
27    #:make-suite
28    #:def-suite
29    #:in-suite
30    #:in-suite*
31    #:make-test
32    #:test
33    #:def-test
34    #:get-test
35    #:rem-test
36    #:test-names
37    ;; fixtures
38    #:make-fixture
39    #:def-fixture
40    #:with-fixture
41    #:get-fixture
42    #:rem-fixture
43    ;; running checks
44    #:is
45    #:is-every
46    #:is-true
47    #:is-false
48    #:signals
49    #:finishes
50    #:skip
51    #:pass
52    #:fail
53    #:*test-dribble*
54    #:for-all
55    #:gen-integer
56    #:gen-float
57    #:gen-character
58    #:gen-string
59    #:gen-list
60    #:gen-tree
61    #:gen-buffer
62    #:gen-one-element
63    ;; running tests
64    #:run
65    #:run-all-tests
66    #:explain
67    #:explain!
68    #:run!
69    #:debug!
70    #:!
71    #:!!
72    #:!!!
73    #:*run-test-when-defined*
74    #:*debug-on-error*
75    #:*debug-on-failure*
76    #:*verbose-failures*
77    #:results-status))
78
79 ;;;; You can use #+5am to put your test-defining code inline with your
80 ;;;; other code - and not require people to have fiveam to run your
81 ;;;; package.
82
83 (pushnew :5am *features*)
84
85 ;;;;@include "check.lisp"
86
87 ;;;;@include "random.lisp"
88
89 ;;;;@include "fixture.lisp"
90
91 ;;;;@include "test.lisp"
92
93 ;;;;@include "suite.lisp"
94
95 ;;;;@include "run.lisp"
96
97 ;;;;@include "explain.lisp"
98
99 ;;;; * Colophon
100
101 ;;;; This documentaion was written by Edward Marco Baringer
102 ;;;; <mb@bese.it> and generated by qbook.
103
104 ;;;; ** COPYRIGHT
105
106 ;;;; Copyright (c) 2002-2003, Edward Marco Baringer
107 ;;;; All rights reserved.
108
109 ;;;; Redistribution and use in source and binary forms, with or without
110 ;;;; modification, are permitted provided that the following conditions are
111 ;;;; met:
112
113 ;;;;  - Redistributions of source code must retain the above copyright
114 ;;;;    notice, this list of conditions and the following disclaimer.
115
116 ;;;;  - Redistributions in binary form must reproduce the above copyright
117 ;;;;    notice, this list of conditions and the following disclaimer in the
118 ;;;;    documentation and/or other materials provided with the distribution.
119
120 ;;;;  - Neither the name of Edward Marco Baringer, nor BESE, nor the names
121 ;;;;    of its contributors may be used to endorse or promote products
122 ;;;;    derived from this software without specific prior written permission.
123
124 ;;;; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
125 ;;;; "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
126 ;;;; LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
127 ;;;; A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT
128 ;;;; OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
129 ;;;; SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
130 ;;;; LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
131 ;;;; DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
132 ;;;; THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
133 ;;;; (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
134 ;;;; OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE