all-tests.lisp
 1 ;;;; -*- mode: lisp -*-
2 ;;;;
3 ;;;; $Id: all-tests.lisp,v 1.1.1.1 2004/06/07 18:49:58 scaekenberghe Exp $
4 ;;;;
5 ;;;; Load and execute all unit and functional tests
6 ;;;;
7 ;;;; Copyright (C) 2002, 2004 Sven Van Caekenberghe, Beta Nine BVBA.
8 ;;;;
9 ;;;; You are granted the rights to distribute and use this software
10 ;;;; as governed by the terms of the Lisp Lesser General Public License
11 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
12
13 (load (merge-pathnames "test-xml" *load-pathname*) :verbose t)
14 (load (merge-pathnames "test-xml-struct-dom" *load-pathname*) :verbose t)
15 (load (merge-pathnames "test-lxml-dom" *load-pathname*) :verbose t)
16 (load (merge-pathnames "test-sxml-dom" *load-pathname*) :verbose t)
17
18 ;;;; eof