[plt-scheme] SchemeUnit: [Listof TestSuite] -> TestSuite
On Fri, May 1, 2009 at 9:00 PM, David Van Horn <dvanhorn at ccs.neu.edu> wrote:
> I feel like I'm missing something obvious, but is there a way to form a test
> suite out of a given list of test suites? All I see is the syntax:
>
> (test-suite name [#:before thunk] [#:after thunk] test ...)
>
> In addition to the compound testing forms, there should probably be
> procedures for constructing compound tests.
There isn't, and there should be. See:
http://planet.plt-scheme.org/trac/ticket/156
You should be able to use make-schemeunit-test-case which has the type:
name (listof test) -> test-suite
It isn't documented, though.
N.