Function RUN-ALL-TESTS
Syntax:
run-all-tests => no-errors, number-failed, number-passed
Arguments and Values:
no-errors---a boolean
number-failed---an integer
number-passed---an integer
Description:
This function runs all tests defined by deftest. The tests are run within an error handler, allowing the system to keep track of failed tests.
The function returns three values: a boolean, which is true if all tests passed and false otherwise, the number of tests that failed, and the number of tests that passed.
See Also:
Notes:
See deftest for the specification of passing and failing tests.