From 3ca2b0de044d00b6eacfee5b32ed98a9bec4fdcb Mon Sep 17 00:00:00 2001 From: Mike Sperber Date: Fri, 11 Sep 2009 08:54:58 +0000 Subject: [PATCH] Clarify that the `test' function runs the checks, not the check forms. svn: r15969 --- collects/test-engine/test-engine.scrbl | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/collects/test-engine/test-engine.scrbl b/collects/test-engine/test-engine.scrbl index 80d332a5cb..0c9bd8c691 100644 --- a/collects/test-engine/test-engine.scrbl +++ b/collects/test-engine/test-engine.scrbl @@ -19,9 +19,10 @@ This module provides test forms for use in Scheme programs, as well as parameters to configure the behavior of test reports. -Each check form may only occur at the top-level or within the -definitions of a local declaration; results are collected and reported -by the test function. +Each check form may only occur at the top-level; results are collected +and reported by the test function. Note that the check forms only +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?]{