; Copyright (C) 2006 Will M. Farr ; ; This program is free software; you can redistribute it and/or modify ; it under the terms of the GNU General Public License as published by ; the Free Software Foundation; either version 2 of the License, or ; (at your option) any later version. ; ; This program is distributed in the hope that it will be useful, ; but WITHOUT ANY WARRANTY; without even the implied warranty of ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ; GNU General Public License for more details. ; ; You should have received a copy of the GNU General Public License along ; with this program; if not, write to the Free Software Foundation, Inc., ; 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. (module run-tests mzscheme (require "generics-test.ss" "streams-test.ss" "manifolds-test.ss" "maps-test.ss" "quaternions-test.ss" "derivatives-test.ss" "lie-groups-test.ss" "lie-group-Rn-test.ss" "lie-group-SO3-test.ss" "vector-spaces-test.ss" "lie-group-representations-test.ss" "memoization-test.ss" (planet "test.ss" ("schematics" "schemeunit.plt" 2)) (planet "text-ui.ss" ("schematics" "schemeunit.plt" 2))) (provide all-tests run-tests) (define all-tests (test-suite "main test" generics-test-suite streams-test-suite manifolds-test-suite maps-test-suite quaternions-test-suite derivatives-test-suite lie-groups-test-suite lie-group-Rn-test-suite lie-group-SO3-test-suite vector-spaces-test-suite lie-group-representations-test-suite memoization-test-suite)) (define (run-tests) (test/text-ui all-tests)))