Function: projectile-test-at-point-fsharp-command

projectile-test-at-point-fsharp-command is a byte-compiled function defined in projectile.el.

Signature

(projectile-test-at-point-fsharp-command TEST-NAME FILE-NAME)

Documentation

Return a dotnet test\= command running TEST-NAME.

The .NET test runners select by a filter expression rather than by file, so the file plays no part. FullyQualifiedName~\= matches on a substring, which keeps the filter working without the namespace.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile-test-at-point-fsharp-command (test-name _file-name)
  "Return a `dotnet test\\=' command running TEST-NAME.
The .NET test runners select by a filter expression rather than by file,
so the file plays no part.  `FullyQualifiedName~\\=' matches on a
substring, which keeps the filter working without the namespace."
  (format "dotnet test --filter %s"
          (shell-quote-argument (format "FullyQualifiedName~%s" test-name))))