r11859: Canonicalize whitespace
[xlunit.git] / textui.lisp
index 5eab0f8ed509924823a5570745f1506a210e45b5..db50929678b218720db1cce8a4cac6812f203e8f 100644 (file)
 (defclass textui-test-runner (test-listener)
   ((ostream :initform nil :accessor ostream :initarg :ostream))
   (:default-initargs :ostream *standard-output*))
+
 (defmethod add-error ((ob textui-test-runner) test-case condition)
   (declare (ignore test-case condition))
   (format (ostream ob) "E"))
-   
+
 (defmethod add-failure ((ob textui-test-runner) test-case condition)
   (declare (ignore test-case condition))
   (format (ostream ob) "F"))
-   
+
 (defmethod start-test ((ob textui-test-runner) test-case)
   (declare (ignore test-case))
   (format (ostream ob) "."))
+
 
 (defmethod textui-test-run ((ob test))
   (let ((test-runner (make-instance 'textui-test-runner))
         (result (make-instance 'test-results))
-       (start-time (get-internal-real-time)))
+        (start-time (get-internal-real-time)))
     (add-listener result test-runner)
     (run-on-test-results ob result)
-    (print-results test-runner result 
-                  (/ (- (get-internal-real-time) start-time)
-                     internal-time-units-per-second))
+    (print-results test-runner result
+                   (/ (- (get-internal-real-time) start-time)
+                      internal-time-units-per-second))
     result))