You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
220 B

#lang racket
(require rackunit "tbd.rkt")
(define hw-tests
(test-suite "scheme unit tests"
(test-case "test fail"
(begin
(check-equal? 3 4)))))
(require rackunit/gui)
(test/gui hw-tests)