Function: make-ert--ewoc-entry
make-ert--ewoc-entry is a byte-compiled function defined in ert.el.gz.
Signature
(make-ert--ewoc-entry &key TEST HIDDEN-P EXPANDED-P EXTENDED-PRINTER-LIMITS-P)
Documentation
Constructor for objects of type ert--ewoc-entry.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/ert.el.gz
;;; Display of test progress and results.
;; An entry in the results buffer ewoc. There is one entry per test.
(cl-defstruct ert--ewoc-entry
(test (cl-assert nil))
;; If the result of this test was expected, its ewoc entry is hidden
;; initially.
(hidden-p (cl-assert nil))
;; An ewoc entry may be collapsed to hide details such as the error
;; condition.
;;
;; I'm not sure the ability to expand and collapse entries is still
;; a useful feature.
(expanded-p t)
;; By default, the ewoc entry presents the error condition with
;; certain limits on how much to print (`print-level',
;; `print-length'). The user can interactively switch to a set of
;; higher limits.
(extended-printer-limits-p nil))