Emacs support for Nette Tester.
If you run tester in compilation-mode, for example by invoking C-u M-x
compile command with something like
./vendor/bin/tester teststhe output will be parsed and references to files will be turned into clickable links. Also the line with the diff output will become clickable and will start an ediff session of expected vs actual test results.
Load this package and register nette-tester to compilation-error-regexp-alist:
(require 'emacs-nette-tester)
(push 'nette-tester compilation-error-regexp-alist)That’s it!