Function: make-ert-test-result
make-ert-test-result is a byte-compiled function defined in ert.el.gz.
Signature
(make-ert-test-result &key MESSAGES SHOULD-FORMS DURATION)
Documentation
Constructor for objects of type ert-test-result.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/ert.el.gz
;; The data structures that represent the result of running a test.
(cl-defstruct ert-test-result
(messages nil)
(should-forms nil)
(duration 0)
)