X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=suite.lisp;fp=suite.lisp;h=42d4d616a44b49511439acb1e8539ea47cebebc7;hb=e6a0ad7329d3ce497ce8c9f3d0d37811b2da4811;hp=4a64425c9c89a870e3f5dbb96da25195c5552c83;hpb=53e193feda5d4cb757ef13d622fac03cf99178a2;p=xlunit.git diff --git a/suite.lisp b/suite.lisp index 4a64425..42d4d61 100644 --- a/suite.lisp +++ b/suite.lisp @@ -2,7 +2,7 @@ ;;;; ************************************************************************* ;;;; FILE IDENTIFICATION ;;;; -;;;; ID: $Id: suite.lisp,v 1.3 2003/08/04 16:13:58 kevin Exp $ +;;;; ID: $Id: suite.lisp,v 1.4 2003/08/04 16:42:27 kevin Exp $ ;;;; Purpose: Suite functions for XLUnit ;;;; ;;;; ************************************************************************* @@ -120,14 +120,3 @@ This is used to dynamically generate a list of tests for a fixture." (add-test (suite ,(caar class-name)) ,(caar class-name)) (textui-test-run ,(caar class-name)))) - -;;; Test Runners - -(defmethod textui-test-run ((suite test-suite) &key (stream t) - (handle-errors t)) - (let* ((start-time (get-internal-real-time)) - (result (run-on-test suite :handle-errors handle-errors)) - (seconds (/ (- (get-internal-real-time) start-time) - internal-time-units-per-second))) - (result-printer result seconds stream))) -