Function: ert--test-execution-info-p
ert--test-execution-info-p is a byte-compiled function defined in
ert.el.gz.
Signature
(ert--test-execution-info-p CL-X)
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/ert.el.gz
;; A container for the state of the execution of a single test and
;; environment data needed during its execution.
(cl-defstruct ert--test-execution-info
(test (cl-assert nil))
(result (cl-assert nil))
;; A thunk that may be called when RESULT has been set to its final
;; value and test execution should be terminated. Should not
;; return.
(exit-continuation (cl-assert nil))
;; The binding of `debugger' outside of the execution of the test.
next-debugger
;; The binding of `ert-debug-on-error' that is in effect for the
;; execution of the current test. We store it to avoid being
;; affected by any new bindings the test itself may establish. (I
;; don't remember whether this feature is important.)
ert-debug-on-error)