Function: projectile-toggle-between-implementation-and-test
projectile-toggle-between-implementation-and-test is an autoloaded,
interactive and byte-compiled function defined in projectile.el.
Signature
(projectile-toggle-between-implementation-and-test)
Documentation
Toggle between an implementation file and its test file.
See the documentation of projectile--find-matching-file and
projectile--find-matching-test for how implementation and test files
are determined.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
;;;###autoload
(defun projectile-toggle-between-implementation-and-test ()
"Toggle between an implementation file and its test file.
See the documentation of `projectile--find-matching-file' and
`projectile--find-matching-test' for how implementation and test files
are determined."
(interactive)
(find-file
(projectile-find-implementation-or-test (buffer-file-name))))