This is the Unit Testing Framework implemented by Gauche.
This is similar to SchemeUnit.
Here.
% sudo gosh install/install.scm
Define a module for your test.
(define test-your-module (use test.unit.test-case) (use your-module)) (selecte-module test-your-module) (provide "test-your-module")
Define test functions that their name are started with "test-" and their arity is 0 in the module.
(define (test-your-function1) (assert-equal 29 (your-function1 2 9)) #f)
COZMIXNG RWiki - GaUnit has more information.
run-test.el may help your testing.