(index ("testeez" 0) ("test/equal" 212) ("test/eq" 439) ("test/eqv" 557) ("test-define" 678) ("test-eval" 842))
(def (sig (syntax "(testeez docstring . test-expressions)" (id testeez))) (p "where each test-expression is a list consisting of one of the following testing operators, a docstring and one or two other forms."))
(def (sig (syntax "(test/equal desc xpr expected)" (id test/equal))) (p "Tests xpr and compares it with equal? to expected.") (p "A shorthand for (test-equal \"\" xpr expected) is also available, simply write (xpr expected)"))
(def (sig (syntax "(test/eq desc xpr expected)" (id test/eq))) (p "Tests xpr and compares it with eq? to expected."))
(def (sig (syntax "(test/eqv desc xpr expected)" (id test/eqv))) (p "Tests xpr and compares it with eqv? to expected."))
(def (sig (syntax "(test-define desc name val)" (id test-define))) (p "Binds name to val.  The binding is visible only to the remainder of a testeez expression."))
(def (sig (syntax "(test-eval desc xpr)" (id test-eval))))
