Function: projectile-find-matching-test

projectile-find-matching-test is a byte-compiled function defined in projectile.el.

Signature

(projectile-find-matching-test IMPL-FILE)

Documentation

Compute the name of the test matching IMPL-FILE.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
(defun projectile-find-matching-test (impl-file)
  "Compute the name of the test matching IMPL-FILE."
  (when-let* ((candidates (projectile--find-matching-test impl-file)))
    (projectile--choose-from-candidates candidates :caller 'projectile-read-file)))