Function: ert-results-next-test

ert-results-next-test is an interactive and byte-compiled function defined in ert.el.gz.

Signature

(ert-results-next-test)

Documentation

Move point to the next test.

To be used in the ERT results buffer.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/ert.el.gz
(defun ert-results-next-test ()
  "Move point to the next test.

To be used in the ERT results buffer."
  (interactive nil ert-results-mode)
  (ert--results-move (ewoc-locate ert--results-ewoc) 'ewoc-next
                     "No tests below"))