Do you mean something like? #lang racket (require rackunit) (require rackunit/gui) (define tests (test-suite "my tests" (test-equal? "check 1" 1 1) (test-equal? "check 2" 2 2))) (test/gui tests)
But that will pop a window. Alternatively, #lang racket (require rackunit) (require rackunit/text-ui) (define tests (test-suite "my tests" (test-equal? "check 1" 1 1) (test-equal? "check 2" 2 2))) (run-tests tests) produces: 2 success(es) 0 failure(s) 0 error(s) 2 test(s) run 0 where 0 is the number of unsuccessful tests. On Sat, Mar 5, 2016 at 11:43 PM, Daniel Prager <daniel.a.pra...@gmail.com> wrote: > Is there a way to get a successful run of RackUnit tests to give a bit of > encouragement? > > E.g. 12 out of 12 tests passed. > > The regular set-up seems to follow the "no news is good news" philosophy. > > Also, I couldn't figure out how to summon the rackunit/gui test runner > (which may be what I want). What does a minimal example look like? > > Many thanks > > Dan > > -- > You received this message because you are subscribed to the Google Groups > "Racket Users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to racket-users+unsubscr...@googlegroups.com. > For more options, visit https://groups.google.com/d/optout. -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to racket-users+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.