[plt-scheme] unit testing in r6rs
On Mon, Oct 13, 2008 at 1:58 PM, Wolfgang De Meuter <wdmeuter at vub.ac.be> wrote:
> Hello,
>
> I'm a bit puzzled with all the languages and module/unit/library-variations.
>
> I'm developing R6RS and would like to write unit tests for my libraries.
>
> Which libraries do I need to include to do so, and which documentation
> should I read?
SchemeUnit is a unit testing framework for PLT Scheme. Here's a small
example showing how you can use SchemeUnit from PLT Scheme's R6RS
language:
#lang r6rs
(import (only (scheme base) require planet))
(require (planet schematics/schemeunit:3/test))
(check-equal? 1 2)
HTH,
Noel