Generic Function: TEST-FAILURE-P

Source

(defgeneric test-failure-p (object)
  (:method ((o t)) nil)
  (:method ((o test-failure)) t))
Source Context