Clarify that the `test' function runs the checks, not the check forms.

svn: r15969
This commit is contained in:
Mike Sperber 2009-09-11 08:54:58 +00:00
parent a9cf0a39a7
commit 3ca2b0de04

View File

@ -19,9 +19,10 @@
This module provides test forms for use in Scheme programs, as well This module provides test forms for use in Scheme programs, as well
as parameters to configure the behavior of test reports. as parameters to configure the behavior of test reports.
Each check form may only occur at the top-level or within the Each check form may only occur at the top-level; results are collected
definitions of a local declaration; results are collected and reported and reported by the test function. Note that the check forms only
by the test function. register checks to be performed. The checks are actually run by the
@scheme[test] function.
@defproc[(check-expect (test any/c) (expected any/c)) void?]{ @defproc[(check-expect (test any/c) (expected any/c)) void?]{