Class: TEST-RESULT

Documentation

All checking macros will generate an object of type TEST-RESULT.

Slots

  • REASON
  • TEST-CASE
  • TEST-EXPR

Hierachy

Precedence List

  • STANDARD-OBJECT

Sub Classes

Source

(defclass test-result ()
  ((reason :accessor reason :initarg :reason :initform "no reason given")
   (test-case :accessor test-case :initarg :test-case)
   (test-expr :accessor test-expr :initarg :test-expr))
  (:documentation "All checking macros will generate an object of
 type TEST-RESULT."))
Source Context