Export *num-trials* and *max-trials*
[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    #:*num-trials*
56    #:*max-trials*
57    #:gen-integer
58    #:gen-float
59    #:gen-character
60    #:gen-string
61    #:gen-list
62    #:gen-tree
63    #:gen-buffer
64    #:gen-one-element
65    ;; running tests
66    #:run
67    #:run-all-tests
68    #:explain
69    #:explain!
70    #:run!
71    #:debug!
72    #:!
73    #:!!
74    #:!!!
75    #:*run-test-when-defined*
76    #:*debug-on-error*
77    #:*debug-on-failure*
78    #:*verbose-failures*
79    #:results-status
80    ;; introspection
81    #:list-all-suites))
82
83 ;;;; You can use #+5am to put your test-defining code inline with your
84 ;;;; other code - and not require people to have fiveam to run your
85 ;;;; package.
86
87 (pushnew :5am *features*)
88
89 ;;;;@include "check.lisp"
90
91 ;;;;@include "random.lisp"
92
93 ;;;;@include "fixture.lisp"
94
95 ;;;;@include "test.lisp"
96
97 ;;;;@include "suite.lisp"
98
99 ;;;;@include "run.lisp"
100
101 ;;;;@include "explain.lisp"
102
103 ;;;; * Colophon
104
105 ;;;; This documentaion was written by Edward Marco Baringer
106 ;;;; <mb@bese.it> and generated by qbook.
107
108 ;;;; ** COPYRIGHT
109
110 ;;;; Copyright (c) 2002-2003, Edward Marco Baringer
111 ;;;; All rights reserved.
112
113 ;;;; Redistribution and use in source and binary forms, with or without
114 ;;;; modification, are permitted provided that the following conditions are
115 ;;;; met:
116
117 ;;;;  - Redistributions of source code must retain the above copyright
118 ;;;;    notice, this list of conditions and the following disclaimer.
119
120 ;;;;  - Redistributions in binary form must reproduce the above copyright
121 ;;;;    notice, this list of conditions and the following disclaimer in the
122 ;;;;    documentation and/or other materials provided with the distribution.
123
124 ;;;;  - Neither the name of Edward Marco Baringer, nor BESE, nor the names
125 ;;;;    of its contributors may be used to endorse or promote products
126 ;;;;    derived from this software without specific prior written permission.
127
128 ;;;; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
129 ;;;; "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
130 ;;;; LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
131 ;;;; A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT
132 ;;;; OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
133 ;;;; SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
134 ;;;; LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
135 ;;;; DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
136 ;;;; THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
137 ;;;; (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
138 ;;;; OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE