[racket] [rackunit] analyzing results of a test-suite

From: Noel Welsh (noelwelsh at gmail.com)
Date: Wed Sep 21 10:33:06 EDT 2011

On Wed, Sep 21, 2011 at 8:29 AM, Chris <c.bowdon at gmail.com> wrote:

> My first approach hasn't worked very well. I wrapped each module's test-cases in a define/provide-test-suite and imported these into a main testing module with a single suite containing all these test-suites. However if I (run-test all-test-suites) then I just get a list of anonymous "test-success/test-failure/test-error"s. There must be a better way?

I think you want

(require rackunit/text-ui)

(run-tests all-test-suites)

HTH,
N.



Posted on the users mailing list.